Skip to content

Commit c665a9f

Browse files
authored
check env var is "true" (gitcoinco#2365)
1 parent 98a90f9 commit c665a9f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/builder/src/utils/wagmi.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ const optimismMainnet: Chain = {
120120
};
121121

122122
// todo: fix for rpc issue is with hardhat local chain calling rpc
123-
if (process.env.REACT_APP_LOCALCHAIN) {
123+
if (process.env.REACT_APP_LOCALCHAIN === "true") {
124124
chainsAvailable.push(chain.hardhat);
125125
}
126126

0 commit comments

Comments
 (0)