Skip to content
This repository was archived by the owner on Aug 27, 2025. It is now read-only.

Commit d6d0b7d

Browse files
committed
fix: drop swc minify
1 parent 17636a2 commit d6d0b7d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

next.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const nextConfig = {
2525
compiler: {
2626
// removeConsole: { exclude: ["error"] },
2727
},
28-
swcMinify: true,
28+
// swcMinify: true,
2929
};
3030

3131
module.exports = withBundleAnalyzer(nextConfig);

utils/wallet/provider.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ export function getCurrentAddress() {
106106
try {
107107
data = JSON.parse(data);
108108
} catch {
109-
return null;
109+
return undefined;
110110
}
111111
}
112112

0 commit comments

Comments
 (0)