Skip to content

Commit

Permalink
fix: missing import, missing error
Browse files Browse the repository at this point in the history
  • Loading branch information
Cussone committed Nov 13, 2024
1 parent 440012c commit 864d6e4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/modal/Modal.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
import { extractConnector } from "../helpers/connector"
import { StarknetkitCompoundConnector } from "../connectors"
import { ArgentX } from "../connectors/injected/argentX"
import { Braavos } from "../connectors/injected/braavos"
import { getModalWallet } from "../helpers/mapModalWallets"
import { getStoreVersionFromBrowser } from "../helpers/getStoreVersionFromBrowser"
Expand Down Expand Up @@ -72,7 +73,7 @@
if (isBraavosMobileApp) {
try {
void callback(getModalWallet(new Braavos()))
} catch {
} catch (e) {
console.error(e)
}
return
Expand Down

0 comments on commit 864d6e4

Please # to comment.