create-varity-app 2.0.0-beta.17 → 2.0.0-beta.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/template/next.config.js
CHANGED
|
@@ -6,7 +6,7 @@ const nextConfig = {
|
|
|
6
6
|
productionBrowserSourceMaps: false,
|
|
7
7
|
webpack: (config, { isServer, dev }) => {
|
|
8
8
|
// Suppress unused optional peer dependencies from UI Kit internals
|
|
9
|
-
['@react-native-async-storage/async-storage', '@solana/kit', '@solana/sysvars', '@solana-program/token-2022', 'x402', '@coinbase/wallet-sdk', '@walletconnect/ethereum-provider'].forEach(pkg => { config.resolve.alias[pkg] = false; });
|
|
9
|
+
['@react-native-async-storage/async-storage', 'viem', 'viem/chains', 'thirdweb/chains', 'thirdweb/react', '@solana/kit', '@solana/sysvars', '@solana-program/token-2022', 'x402', '@coinbase/wallet-sdk', '@walletconnect/ethereum-provider'].forEach(pkg => { config.resolve.alias[pkg] = false; });
|
|
10
10
|
if (!dev && !isServer) config.devtool = false;
|
|
11
11
|
return config;
|
|
12
12
|
},
|
|
@@ -556,12 +556,12 @@ export default function SettingsPage() {
|
|
|
556
556
|
)}
|
|
557
557
|
</div>
|
|
558
558
|
|
|
559
|
-
{/*
|
|
559
|
+
{/* Account Settings */}
|
|
560
560
|
{privyAppId && PrivyUserProfile && (
|
|
561
561
|
<div className="rounded-xl border border-gray-200 bg-white p-6 shadow-sm">
|
|
562
562
|
<h2 className="mb-4 text-lg font-semibold text-gray-900 flex items-center gap-2">
|
|
563
563
|
<Key className="h-5 w-5" />
|
|
564
|
-
Account Settings
|
|
564
|
+
Account Settings
|
|
565
565
|
</h2>
|
|
566
566
|
<PrivyUserProfile showLogoutButton={false} />
|
|
567
567
|
</div>
|