Skip to content

Commit

Permalink
fix: build error
Browse files Browse the repository at this point in the history
  • Loading branch information
techeng322 committed Oct 8, 2024
1 parent 3bd7c7e commit 33e2cd0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/zora/getCollectorClient.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { createCollectorClient } from "@zoralabs/protocol-sdk"
import { getPublicClient } from "../clients"

const getCollectorClient = (chainId: number) => {
const publicClient = getPublicClient(chainId)
const publicClient = getPublicClient(chainId) as any
const collectorClient = createCollectorClient({
chainId,
publicClient,
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"compilerOptions": {
"target": "es5",
"target": "es2020",
"lib": [
"dom",
"dom.iterable",
Expand Down

0 comments on commit 33e2cd0

Please sign in to comment.