Skip to content

Commit

Permalink
fix: import statement
Browse files Browse the repository at this point in the history
  • Loading branch information
angrybayblade committed Mar 12, 2024
1 parent 1abc076 commit 0ff0c8f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions frontend/hooks/useMasterWallet.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { useEffect, useState } from 'react';
import { useAppInfo } from '.';
import EthersService from '@/service/Ethers';
import { useEffect, useState } from "react";
import { useAppInfo } from ".";
import { EthersService } from "@/service/Ethers";

type useMasterWalletProps = {
rpc: string;
Expand All @@ -9,7 +9,7 @@ type useMasterWalletProps = {
export const useMasterWallet = ({ rpc }: useMasterWalletProps) => {
const { userPublicKey } = useAppInfo();
const [nativeBalance, setNativeBalance] = useState<number | undefined>(
undefined,
undefined
);

useEffect(() => {
Expand Down

0 comments on commit 0ff0c8f

Please sign in to comment.