Skip to content

Commit 2342dec

Browse files
committed
fix: linter
1 parent 4694409 commit 2342dec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

web/wagmi.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const readArtifacts = async (viemChainName: string, hardhatChainName?: string) =
3636
const fileContent = await readFile(filePath, "utf-8");
3737
const jsonContent = JSON.parse(fileContent);
3838
results.push({
39-
name: name,
39+
name,
4040
address: {
4141
[chain.id]: jsonContent.address as `0x{string}`,
4242
},
@@ -48,7 +48,7 @@ const readArtifacts = async (viemChainName: string, hardhatChainName?: string) =
4848
};
4949

5050
const getConfig = async (): Promise<Config> => {
51-
const deployment = process.env["REACT_APP_DEPLOYMENT"] ?? "testnet";
51+
const deployment = process.env.REACT_APP_DEPLOYMENT ?? "testnet";
5252

5353
let viemNetwork: string;
5454
let hardhatNetwork: string;

0 commit comments

Comments
 (0)