Skip to content

Commit

Permalink
fix: modal imports
Browse files Browse the repository at this point in the history
  • Loading branch information
bluecco committed Aug 15, 2024
1 parent 1fc7464 commit 3949771
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/modal/ConnectorButton.svelte
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script lang="ts">
import { ModalWallet } from "../window"
import { ModalWallet } from "../types/modal"
import type { StarknetkitConnector } from "../connectors/connector"
export let wallet: ModalWallet
Expand Down
2 changes: 1 addition & 1 deletion src/modal/Modal.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import ConnectorButton from "./ConnectorButton.svelte"
import type { StarknetkitConnector } from "../connectors/connector"
import { InjectedConnector } from "../connectors/injected"
import { ModalWallet } from "../window"
import { ModalWallet } from "../types/modal"
export let dappName: string = window?.document.title ?? ""
export let modalWallets: ModalWallet[]
Expand Down

0 comments on commit 3949771

Please sign in to comment.