Skip to content

Commit

Permalink
fix in app wallet submit type issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mhzrerfani committed Oct 15, 2024
1 parent 567dbb7 commit 7aee108
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/web/src/components/InAppDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
retrieveInAppAccount,
setInAppWalletStatus,
} from "@src/utils/inAppWallet";
import { useEffect, useState } from "react";
import { FormEventHandler, useEffect, useState } from "react";
import { Input } from "./Input";
import Modal from "./Modal";

Expand All @@ -31,7 +31,7 @@ export default function InAppDialog() {
}
};

const fundAccount = (e) => {
const fundAccount = (e: React.FormEvent<HTMLFormElement>) => {
e.preventDefault();

setLoading(true);
Expand Down

0 comments on commit 7aee108

Please sign in to comment.