Skip to content

Commit

Permalink
fix ui
Browse files Browse the repository at this point in the history
  • Loading branch information
abrzezinski94 committed Jul 29, 2024
1 parent 9f9578f commit d28a503
Show file tree
Hide file tree
Showing 5 changed files with 860 additions and 448 deletions.
4 changes: 2 additions & 2 deletions components/notifications/TransactionNotification.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,13 +114,13 @@ const TransactionNotificationList = () => {
</button>
) : null}
{reversedNotifications.map((n) => (
<TransactionNotification key={n.id} notification={n} />
<TransactionNotificationComponent key={n.id} notification={n} />
))}
</div>
)
}

const TransactionNotification = ({
const TransactionNotificationComponent = ({
notification,
}: {
notification: TransactionNotification
Expand Down
3 changes: 0 additions & 3 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,6 @@ const nextConfig = {
BUILD_ID: JSON.stringify(opts.buildId),
},
}),
new webpack.NormalModuleReplacementPlugin(/^node:/, (resource) => {
resource.request = resource.request.replace(/^node:/, '')
}),
)

return config
Expand Down
16 changes: 9 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,14 @@
"html-react-parser": "3.0.4",
"html2canvas": "1.4.1",
"http-proxy-middleware": "2.0.6",
"i18next": "23.2.11",
"i18next": "23.12.2",
"immer": "9.0.12",
"js-cookie": "3.0.1",
"klinecharts": "8.6.3",
"lodash": "4.17.21",
"net": "1.0.2",
"next": "14.0.3",
"next-i18next": "15.0.0",
"next": "14.2.5",
"next-i18next": "15.3.0",
"next-plausible": "3.11.1",
"next-themes": "0.2.0",
"react": "18.2.0",
Expand Down Expand Up @@ -114,7 +114,7 @@
"@typescript-eslint/eslint-plugin": "5.43.0",
"autoprefixer": "10.4.13",
"eslint": "8.13.0",
"eslint-config-next": "13.4.17",
"eslint-config-next": "14.2.5",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "4.4.0",
Expand All @@ -130,15 +130,18 @@
"tailwindcss": "3.3.3",
"ts-jest": "29.1.1",
"ts-node": "10.9.2",
"typescript": "4.9.4"
"typescript": "5.5.4"
},
"resolutions": {
"@coral-xyz/anchor": "^0.27.0",
"eslint-config-next/eslint-import-resolver-typescript/tsconfig-paths/json5": "1.0.2",
"@solana/wallet-adapter-solflare": "0.6.28",
"crypto-js": ">=4.1.1",
"@sentry/nextjs": ">=7.77.0",
"protobufjs": ">=7.2.5"
"protobufjs": ">=7.2.5",
"**/@solana/web3.js/node-fetch": "npm:@blockworks-foundation/[email protected]",
"**/cross-fetch/node-fetch": "npm:@blockworks-foundation/[email protected]",
"**/@blockworks-foundation/mangolana/node-fetch": "npm:@blockworks-foundation/[email protected]"
},
"lavamoat": {
"allowScripts": {
Expand All @@ -154,7 +157,6 @@
"@metaplex-foundation/js>@bundlr-network/client>arbundles>secp256k1": false,
"@metaplex-foundation/js>@bundlr-network/client>arbundles>keccak": false,
"@switchboard-xyz/solana.js>@switchboard-xyz/common>protobufjs": true,
"@blockworks-foundation/mango-v4>@raydium-io/raydium-sdk>tsup>esbuild": true,
"@solana/web3.js>bigint-buffer": false,
"@solana/web3.js>rpc-websockets>bufferutil": true,
"@solana/web3.js>rpc-websockets>utf-8-validate": true,
Expand Down
87 changes: 0 additions & 87 deletions pages/sentry-example-page.tsx

This file was deleted.

Loading

0 comments on commit d28a503

Please sign in to comment.