Skip to content

Commit

Permalink
chore: update other tools
Browse files Browse the repository at this point in the history
  • Loading branch information
Xaroz committed Dec 9, 2024
1 parent e25614a commit f65038d
Show file tree
Hide file tree
Showing 3 changed files with 322 additions and 247 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"@hyperlane-xyz/sdk": "7.1.0",
"@hyperlane-xyz/utils": "7.1.0",
"@hyperlane-xyz/widgets": "7.1.0",
"@tanstack/react-query": "^5.35.5",
"@tanstack/react-query": "^5.62.3",
"bignumber.js": "^9.1.2",
"buffer": "^6.0.3",
"clsx": "^2.1.1",
Expand All @@ -20,7 +20,7 @@
"nextjs-cors": "^2.1.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-toastify": "^9.1.1",
"react-toastify": "^10.0.6",
"react-tooltip": "^5.26.3",
"urql": "^3.0.3",
"yaml": "^2.4.5",
Expand All @@ -35,17 +35,17 @@
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"autoprefixer": "^10.4.15",
"autoprefixer": "^10.4.20",
"eslint": "^9.16.0",
"eslint-config-next": "^15.0.4",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.6.3",
"postcss": "^8.4.21",
"postcss": "^8.4.49",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-tailwindcss": "^0.6.8",
"tailwindcss": "^3.4.13",
"ts-node": "^10.9.1",
"tailwindcss": "^3.4.16",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"homepage": "https://www.hyperlane.xyz",
Expand Down
4 changes: 2 additions & 2 deletions src/pages/_app.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
import type { AppProps } from 'next/app';
import { ToastContainer, Zoom, toast } from 'react-toastify';
import { ToastContainer, Zoom } from 'react-toastify';
import 'react-toastify/dist/ReactToastify.css';
import { Tooltip } from 'react-tooltip';
import { Provider as UrqlProvider, createClient as createUrqlClient } from 'urql';
Expand Down Expand Up @@ -49,7 +49,7 @@ export default function App({ Component, router, pageProps }: AppProps) {
</ChainConfigSyncer>
</UrqlProvider>
</QueryClientProvider>
<ToastContainer transition={Zoom} position={toast.POSITION.BOTTOM_RIGHT} limit={2} />
<ToastContainer transition={Zoom} position="bottom-right" limit={2} />
<Tooltip id="root-tooltip" className="z-50" />
</ErrorBoundary>
</div>
Expand Down
Loading

0 comments on commit f65038d

Please sign in to comment.