We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1243346 commit 2b8cfc3Copy full SHA for 2b8cfc3
playground/nextjs-app-router/components/AppProvider.tsx
@@ -71,13 +71,6 @@ export const AppProvider = ({ children }: { children: React.ReactNode }) => {
71
defaultValue: defaultState.componentMode,
72
});
73
74
- // const [walletType, setWalletType] = useStateWithStorage<
75
- // WalletPreference | undefined
76
- // >({
77
- // key: 'walletType',
78
- // defaultValue: undefined,
79
- // });
80
-
81
const [chainId, setChainId] = useStateWithStorage<number>({
82
key: 'chainId',
83
parser: (v) => Number.parseInt(v),
0 commit comments