Skip to content

Commit

Permalink
fixing types
Browse files Browse the repository at this point in the history
  • Loading branch information
ordinalspractice committed Jan 17, 2025
1 parent d014db6 commit 8f41b17
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 19 deletions.
Binary file modified www/src/bip322_bg.wasm
Binary file not shown.
21 changes: 2 additions & 19 deletions www/src/components/ConnectWallet.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,5 @@
import { Button } from "@/components/ui/button";
import {
SUPPORTED_WALLETS,
WalletIcon,
UNISAT,
MAGIC_EDEN,
OYL,
PHANTOM,
LEATHER,
XVERSE,
OKX,
} from "@omnisat/lasereyes";
import { SUPPORTED_WALLETS, WalletIcon } from "@omnisat/lasereyes";
import FormWrapper from "./FormWrapper";

interface ConnectWalletFormProps {
Expand All @@ -18,14 +8,7 @@ interface ConnectWalletFormProps {
[key: string]: boolean;
};
onConnect: (
walletName:
| typeof UNISAT
| typeof MAGIC_EDEN
| typeof OYL
| typeof PHANTOM
| typeof LEATHER
| typeof XVERSE
| typeof OKX
walletName: (typeof SUPPORTED_WALLETS)[keyof typeof SUPPORTED_WALLETS]["name"]
) => Promise<void>;
onDisconnect: () => void;
}
Expand Down

0 comments on commit 8f41b17

Please sign in to comment.