We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 881e3ff commit c648093Copy full SHA for c648093
src/lib/feature-flags.ts
@@ -6,14 +6,14 @@ declare global {
6
7
export function useNewAuthFlow(): boolean {
8
if (typeof window === 'undefined') {
9
- return false;
+ return true;
10
}
11
12
if (typeof window.GRAPES_USE_NEW_AUTH === 'boolean') {
13
return window.GRAPES_USE_NEW_AUTH;
14
15
16
17
18
19
export function enableNewAuthFlow(): void {
0 commit comments