diff --git a/web/src/views/LoginPortal/FirstFactor/FirstFactorForm.tsx b/web/src/views/LoginPortal/FirstFactor/FirstFactorForm.tsx index 6bbeda992..d08ade4c3 100644 --- a/web/src/views/LoginPortal/FirstFactor/FirstFactorForm.tsx +++ b/web/src/views/LoginPortal/FirstFactor/FirstFactorForm.tsx @@ -42,7 +42,7 @@ const FirstFactorForm = function (props: Props) { const loginChannel = useMemo(() => new BroadcastChannel("login"), []); - const [rememberMe, setRememberMe] = useState(false); + const [rememberMe, setRememberMe] = useState(true); const [username, setUsername] = useState(""); const [usernameError, setUsernameError] = useState(false); const [password, setPassword] = useState("");