From ef439ea87e1db98cdfa171c5e076edae30b33f0a Mon Sep 17 00:00:00 2001 From: "Patrik J. Braun" Date: Mon, 21 Nov 2022 19:51:57 +0100 Subject: [PATCH] making remember me to be true by default --- src/common/entities/LoginCredential.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/entities/LoginCredential.ts b/src/common/entities/LoginCredential.ts index 8088142d..2bd0732c 100644 --- a/src/common/entities/LoginCredential.ts +++ b/src/common/entities/LoginCredential.ts @@ -2,6 +2,6 @@ export class LoginCredential { constructor( public username: string = '', public password: string = '', - public rememberMe: boolean = false + public rememberMe: boolean = true ) {} }