We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bdb65f commit df1c746Copy full SHA for df1c746
components/upProvider.tsx
@@ -99,7 +99,10 @@ export function UpProvider({ children }: UpProviderProps) {
99
if (!mounted) return;
100
setAccounts(_accounts);
101
102
- const _chainId = parseInt((await provider.request("eth_chainId")) as string, 16);
+ const _chainId = parseInt(
103
+ (await provider.request("eth_chainId")) as string,
104
+ 16
105
+ );
106
107
setChainId(_chainId);
108
0 commit comments