From 27042e05c91ddb96cdc8660b7e170b4bbc2a873e Mon Sep 17 00:00:00 2001 From: Your Name Date: Thu, 6 Mar 2025 00:06:38 +0100 Subject: [PATCH 1/2] Fix:Typhon icon display missing --- src/constants/wallet.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/constants/wallet.ts b/src/constants/wallet.ts index 848987c..9f50160 100644 --- a/src/constants/wallet.ts +++ b/src/constants/wallet.ts @@ -55,6 +55,10 @@ export const WALLETS: Record< image: "https://ticketingserver.nucast.io/storage/v1/object/public/web-assets/wallets/typhon.svg", }, + "typhoncip30": { + title: "TyphonWallet", + image: "https://ticketingserver.nucast.io/storage/v1/object/public/web-assets/wallets/typhon.svg", +}, nufi: { title: "NuFi", image: From 8dcb3f4d35640f28c1eac59355a492ac2b97c242 Mon Sep 17 00:00:00 2001 From: Your Name Date: Thu, 6 Mar 2025 12:47:38 +0100 Subject: [PATCH 2/2] fix typescript check error --- next.config.js | 2 +- tsconfig.json | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/next.config.js b/next.config.js index 746aa83..792c5ac 100644 --- a/next.config.js +++ b/next.config.js @@ -17,7 +17,7 @@ const nextConfig = { swcMinify: true, - webpack: function (config, options) { + webpack: (config: any, options: any) => { config.experiments = { asyncWebAssembly: true, layers: true, diff --git a/tsconfig.json b/tsconfig.json index 86eed5c..a125dd6 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -46,6 +46,8 @@ ".next/types/**/*.ts" ], "exclude": [ - "node_modules" + "node_modules", + "public/sw.js", + "public/workbox-*.js" ] } \ No newline at end of file