From aceb881b7cfd7fb4669cd5df56af6a51fe9c7c4a Mon Sep 17 00:00:00 2001 From: Matchu Date: Wed, 14 Sep 2022 17:48:39 -0700 Subject: [PATCH] Default experimental login mode to On Still leaving the toggle so users can hop back out to Auth0 if it turns out we broke stuff on 'em, but yeah I haven't heard anything bad from the experiment at all, and I think we don't need to bother with the gradual rollout! Let's just go! --- src/app/components/useCurrentUser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/components/useCurrentUser.js b/src/app/components/useCurrentUser.js index 798a6c5..79d842e 100644 --- a/src/app/components/useCurrentUser.js +++ b/src/app/components/useCurrentUser.js @@ -213,7 +213,7 @@ export function useAuthModeFeatureFlag() { savedValue = null; } - const value = savedValue || "auth0"; + const value = savedValue || "db"; return [value, setSavedValue]; }