Skip to content

Commit

Permalink
fix: update package.json dependencies and improve import paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben-Rey committed Oct 30, 2024
1 parent 4998f66 commit 44d43af
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion front/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
},
"dependencies": {
"@massalabs/massa-web3": "^5.0.0",
"@massalabs/react-ui-kit": "^0.1.1-dev",
"@massalabs/wallet-provider": "^3.0.0",
"@massalabs/react-ui-kit": "^0.1.1-dev",
"copy-to-clipboard": "^3.3.3",
"currency.js": "^2.0.4",
"delay": "^6.0.0",
Expand Down Expand Up @@ -65,5 +65,9 @@
"typescript": "^5.2.2",
"vite": "^5.1.7",
"vite-plugin-image-optimizer": "^1.1.8"
},
"overrides": {
"@massalabs/massa-web3": "^5.0.0",
"@massalabs/wallet-provider": "^3.0.0"
}
}
2 changes: 1 addition & 1 deletion front/src/hooks/useAccountSync.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { useCallback, useEffect, useRef } from 'react';
import { useAccountStore } from '@massalabs/react-ui-kit/src/lib/ConnectMassaWallets';
import { useLocalStorage } from '@massalabs/react-ui-kit/src/lib/util/hooks/useLocalStorage';
import { getWallets } from '../../../../wallet-provider';
import { getWallets } from '@massalabs/wallet-provider';

type SavedAccount = {
address: string;
Expand Down

0 comments on commit 44d43af

Please sign in to comment.