Skip to content

Commit c648093

Browse files
committed
make the new login flow default
1 parent 881e3ff commit c648093

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib/feature-flags.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ declare global {
66

77
export function useNewAuthFlow(): boolean {
88
if (typeof window === 'undefined') {
9-
return false;
9+
return true;
1010
}
1111

1212
if (typeof window.GRAPES_USE_NEW_AUTH === 'boolean') {
1313
return window.GRAPES_USE_NEW_AUTH;
1414
}
1515

16-
return false;
16+
return true;
1717
}
1818

1919
export function enableNewAuthFlow(): void {

0 commit comments

Comments
 (0)