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!
This commit is contained in:
Emi Matchu 2022-09-14 17:48:39 -07:00
parent 0159bf18e0
commit aceb881b7c

View file

@ -213,7 +213,7 @@ export function useAuthModeFeatureFlag() {
savedValue = null;
}
const value = savedValue || "auth0";
const value = savedValue || "db";
return [value, setSavedValue];
}