create-varity-app 2.0.0-beta.13 → 2.0.0-beta.15
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
|
@@ -154,7 +154,7 @@ function DashboardShell({ children }: { children: React.ReactNode }) {
|
|
|
154
154
|
|
|
155
155
|
const handleLogout = async () => {
|
|
156
156
|
await logout();
|
|
157
|
-
|
|
157
|
+
window.location.href = '/';
|
|
158
158
|
};
|
|
159
159
|
|
|
160
160
|
// Fallback layout when DashboardLayout from ui-kit isn't available
|
|
@@ -86,7 +86,7 @@ export default function LoginPage() {
|
|
|
86
86
|
appId={process.env.NEXT_PUBLIC_PRIVY_APP_ID}
|
|
87
87
|
thirdwebClientId={process.env.NEXT_PUBLIC_THIRDWEB_CLIENT_ID}
|
|
88
88
|
loginMethods={['email', 'google']}
|
|
89
|
-
appearance={{ theme: 'light', accentColor: '#2563EB'
|
|
89
|
+
appearance={{ theme: 'light', accentColor: '#2563EB' }}
|
|
90
90
|
>
|
|
91
91
|
<LoginContent />
|
|
92
92
|
</PrivyStackComponent>
|