I haven't tested it, because we have no test infrastructure. Deploy at your own risk
13 lines
731 B
Diff
13 lines
731 B
Diff
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<boolean>("login"), []);
|
|
|
|
- const [rememberMe, setRememberMe] = useState(false);
|
|
+ const [rememberMe, setRememberMe] = useState(true);
|
|
const [username, setUsername] = useState("");
|
|
const [usernameError, setUsernameError] = useState(false);
|
|
const [password, setPassword] = useState("");
|