Skip to content

Commit 0c500b5

Browse files
committed
lint
1 parent 1dc5ac9 commit 0c500b5

File tree

4 files changed

+103
-46
lines changed

4 files changed

+103
-46
lines changed

package.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,6 @@
7070
"ws@>=8.0.0 <8.17.1": "8.17.1",
7171
"ws@>=7.0.0 <7.5.10": "7.5.10",
7272
"ws@>=6.0.0 <6.2.3": "6.2.3",
73-
"eslint": "8.57.0",
74-
"@typescript-eslint/typescript-estree": "^7.14.1",
7573
"axios@<1.7.4": "^1.7.4",
7674
"send@<0.19.0": "^0.19.0",
7775
"elliptic@<6.5.7": "^6.5.7",

packages/thirdweb/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -343,6 +343,7 @@
343343
"@types/cross-spawn": "^6.0.6",
344344
"@types/react": "npm:[email protected]",
345345
"@typescript-eslint/eslint-plugin": "7.14.1",
346+
"@typescript-eslint/parser": "7.14.1",
346347
"@viem/anvil": "0.0.10",
347348
"@vitejs/plugin-react": "^4.3.4",
348349
"@vitest/coverage-v8": "2.1.8",

packages/thirdweb/src/wallets/utils/chains.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ function getValidChainRPCs(
5050
processedRPCs.push(
5151
rpc.replace("${THIRDWEB_API_KEY}", clientId) +
5252
(typeof globalThis !== "undefined" && "APP_BUNDLE_ID" in globalThis
53-
? `/?bundleId=${globalThis.APP_BUNDLE_ID}`
53+
? // @ts-expect-error
54+
`/?bundleId=${globalThis.APP_BUNDLE_ID}`
5455
: ""),
5556
);
5657
} else {

pnpm-lock.yaml

Lines changed: 100 additions & 43 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)