Skip to content

Commit

Permalink
Merge branch 'hotfix-transfer-bugs' of github.com:skalenetwork/metapo…
Browse files Browse the repository at this point in the history
…rt into qa
  • Loading branch information
dmytrotkk committed Oct 23, 2023
2 parents 5b0481a + 2fe74cf commit 38efca9
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 21 deletions.
Binary file modified bun.lockb
Binary file not shown.
30 changes: 15 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@
"version": "node -e \"console.log(require('./package.json').version);\""
},
"devDependencies": {
"@storybook/addon-essentials": "7.5.1",
"@storybook/addon-interactions": "7.5.1",
"@storybook/addon-links": "7.5.1",
"@storybook/addon-essentials": "7.4.0",
"@storybook/addon-interactions": "7.4.0",
"@storybook/addon-links": "7.4.0",
"@storybook/addon-styling": "1.3.7",
"@storybook/blocks": "7.5.1",
"@storybook/react": "7.5.1",
"@storybook/react-vite": "7.5.1",
"@storybook/testing-library": "0.2.2",
"@storybook/blocks": "7.4.0",
"@storybook/react": "7.4.0",
"@storybook/react-vite": "7.4.0",
"@storybook/testing-library": "0.2.0",
"@testing-library/react": "14.0.0",
"@types/node": "20.4.9",
"@types/react": "18.2.20",
Expand All @@ -57,7 +57,7 @@
"eslint-plugin-n": "16.0.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.33.1",
"eslint-plugin-storybook": "0.6.15",
"eslint-plugin-storybook": "0.6.13",
"jsdom": "22.1.0",
"json": "11.0.0",
"lint-staged": "13.2.3",
Expand All @@ -67,24 +67,24 @@
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.65.1",
"storybook": "7.5.1",
"storybook": "7.4.0",
"typescript": "5.1.6",
"vite": "4.4.9",
"vite-plugin-dts": "3.5.1",
"vite-plugin-sass-dts": "^1.3.9",
"vitest": "0.34.1"
},
"dependencies": {
"@mui/material": "^5.14.14",
"@mui/lab": "^5.0.0-alpha.149",
"@mui/icons-material": "^5.14.14",
"@mui/material": "^5.14.8",
"@mui/lab": "^5.0.0-alpha.143",
"@mui/icons-material": "^5.14.8",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@rainbow-me/rainbowkit": "^1.1.2",
"@skalenetwork/ima-js": "2.0.0-develop.4",
"@rainbow-me/rainbowkit": "^1.1.1",
"@skalenetwork/ima-js": "2.0.0-beta.0",
"coingecko-api-v3": "^0.0.29",
"react-jazzicon": "^1.0.4",
"viem": "^1.16.6",
"viem": "^1.10.8",
"wagmi": "^1.4.1",
"zustand": "^4.4.1"
},
Expand Down
2 changes: 0 additions & 2 deletions src/components/Debug.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@
* @copyright SKALE Labs 2023-Present
*/

import Button from '@mui/material/Button'

import Grid from '@mui/material/Grid';
import Table from '@mui/material/Table';
import TableBody from '@mui/material/TableBody';
Expand Down
2 changes: 0 additions & 2 deletions src/store/MetaportStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,11 +124,9 @@ export const useMetaportStore = create<MetaportState>()((set, get) => ({
} catch (err) {
console.error(err)
const msg = err.message
let showTips = true
let headline
if (err.code && err.code === 'ACTION_REJECTED') {
headline = 'Transaction signing was rejected'
showTips = false
} else {
headline = TRANSFER_ERROR_MSG
}
Expand Down
4 changes: 2 additions & 2 deletions vercel.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"$schema": "https://openapi.vercel.sh/vercel.json",
"buildCommand": "yarn build",
"devCommand": "bun dev",
"installCommand": "bash prepare_meta.sh && bun install && bun build:lib",
"devCommand": "yarn dev",
"installCommand": "bash prepare_meta.sh && yarn install && yarn build:lib",
"framework": null,
"outputDirectory": "./storybook-static"
}

0 comments on commit 38efca9

Please sign in to comment.