Skip to content

Commit

Permalink
fix(deps): use new hooks for minting
Browse files Browse the repository at this point in the history
  • Loading branch information
Inukares committed Sep 4, 2024
1 parent 63ef765 commit 0e5c62f
Show file tree
Hide file tree
Showing 4 changed files with 146 additions and 75 deletions.
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky"
"prepare": "husky",
"format": "prettier --write ."
},
"dependencies": {
"@argent/x-sessions": "^6.7.4",
Expand All @@ -16,11 +17,11 @@
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@starknet-io/types-js": "^0.7.7",
"@starknet-react/chains": "^0.1.7",
"@starknet-react/core": "^2.8.2",
"@starknet-react/chains": "3.0.0-beta.3",
"@starknet-react/core": "3.0.0-beta.3",
"colord": "^2.9.3",
"framer-motion": "^11.2.10",
"get-starknet-core": "^3.2.0",
"get-starknet-core": "^4.0.0",
"jotai": "^2.8.2",
"lodash-es": "^4.17.21",
"next": "14.2.4",
Expand Down
146 changes: 96 additions & 50 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default function Home() {
setWalletNext(RESET)
setConnectorData(RESET)
setConnector(RESET)
}, [])
}, [setConnector, setConnectorData, setWalletLatest, setWalletNext])

return (
<Flex
Expand Down
Loading

0 comments on commit 0e5c62f

Please sign in to comment.