Skip to content
This repository was archived by the owner on Oct 15, 2024. It is now read-only.

Commit 3152713

Browse files
committed
chore: remove braces
1 parent f0972ae commit 3152713

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

lib/modules/web3/ChainConfig.tsx

+2-3
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,8 @@ export const rpcFallbacks: Record<GqlChain, string | undefined> = {
4040
}
4141

4242
const baseUrl = getBaseUrl()
43-
const getPrivateRpcUrl = (chain: GqlChain) => {
44-
return `${baseUrl}/api/rpc/${chain}`
45-
}
43+
const getPrivateRpcUrl = (chain: GqlChain) => `${baseUrl}/api/rpc/${chain}`
44+
4645
export const rpcOverrides: Record<GqlChain, string | undefined> = {
4746
[GqlChain.Mainnet]: getPrivateRpcUrl(GqlChain.Mainnet),
4847
[GqlChain.Arbitrum]: getPrivateRpcUrl(GqlChain.Arbitrum),

0 commit comments

Comments
 (0)