authelia: make patch conform to the other ones

This commit is contained in:
eyjhb 2025-02-08 18:19:01 +01:00
parent 7ffbf750a5
commit e8271a99e4
Signed by: eyjhb
GPG key ID: 609F508E3239F920
2 changed files with 1 additions and 1 deletions

View file

@ -0,0 +1,13 @@
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("");