Skip to content

Commit

Permalink
chore: fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
khanti42 committed Jan 28, 2025
1 parent a04348e commit 1d18f59
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ export const DeployModalView = ({ address }: Props) => {
const toastr = new Toastr();

const onDeploy = async () => {
if (!translate) return;
try {
const resp = await deployAccount(address, '0', chainId);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ export const SendModalView = ({ closeModal }: Props) => {

const handleChange = (fieldName: string, fieldValue: string) => {
//Check if input amount does not exceed user balance
if (!translate) return;
setErrors((prevErrors) => ({
...prevErrors,
[fieldName]: '',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ export const UpgradeModelView = ({ address }: Props) => {
const toastr = new Toastr();

const onUpgrade = async () => {
if (!translate) return;
try {
const resp = await upgradeAccount(address, '0', chainId);

Expand Down

0 comments on commit 1d18f59

Please sign in to comment.