Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aahna-ashina committed Mar 3, 2024
1 parent 92940eb commit 1d22e28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/web-app/lib/connectors.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ type FallbackProviderConfig = Omit<providers.FallbackProviderConfig, "provider">

const customAlchemyProvider = ({ priority, stallTimeout, weight }: FallbackProviderConfig) => {
return (chain: Chain) => {
let apiKey = process.env.NEXT_PUBLIC_ALCHEMY_API_KEY;
const apiKey = process.env.NEXT_PUBLIC_ALCHEMY_API_KEY;
if (!apiKey || !chain.rpcUrls.alchemy) return null;

return {
Expand Down

0 comments on commit 1d22e28

Please sign in to comment.