Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
JeanNeiverth committed Oct 15, 2024
1 parent 1e3c442 commit 80d0788
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions apps/create-vesting/src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
useIFrameContext,
} from "@bleu/cow-hooks-ui";
import { Token } from "@uniswap/sdk-core";

const x = 1;
import { Form } from "@bleu/ui";
import { zodResolver } from "@hookform/resolvers/zod";
import { useCallback, useMemo } from "react";
Expand Down Expand Up @@ -60,7 +60,7 @@ export default function Page() {
context?.chainId && tokenAddress && tokenDecimals
? new Token(context.chainId, tokenAddress, tokenDecimals, tokenSymbol)
: undefined,
[context?.chainId, tokenAddress, tokenDecimals, tokenSymbol],
[context?.chainId, tokenAddress, tokenDecimals, tokenSymbol]
);

const vestingEscrowFactoryAddress = useMemo(() => {
Expand Down Expand Up @@ -88,12 +88,12 @@ export default function Page() {
router.push,
setHookInfo,
getHooksTransactions,
],
]
);

const onSubmit = useMemo(
() => form.handleSubmit(onSubmitCallback),
[form, onSubmitCallback],
[form, onSubmitCallback]
);

if (!context)
Expand Down

0 comments on commit 80d0788

Please sign in to comment.