Skip to content

Commit

Permalink
err handle
Browse files Browse the repository at this point in the history
  • Loading branch information
hathbanger committed Nov 13, 2024
1 parent d14dcae commit f9e65fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/demo.lasereyes.build/components/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ const App = ({ setNetwork }: { setNetwork: (n: NetworkType) => void }) => {
switchNetwork(MAINNET)
setNetwork(MAINNET)
}
} catch (e) {
} catch (e: any) {
toast.error(e.message)
}
}
Expand Down

0 comments on commit f9e65fc

Please sign in to comment.