6177214e-ce7c-49e3-99de-ff9721b26f63 — Commit 925ae7b1

AuthorMikkel Thygesen<mth@dwarf.dk>
Date2025-01-30 14:08:47 +0100
553: removed debug code

Changed files

comwell_key_app/lib/authentication/authentication_repository.dart | 1 -
 1 file changed, 1 deletion(-)

Diff

diff --git a/comwell_key_app/lib/authentication/authentication_repository.dart b/comwell_key_app/lib/authentication/authentication_repository.dart
index 60eaeadf..cefd4d86 100644
--- a/comwell_key_app/lib/authentication/authentication_repository.dart
+++ b/comwell_key_app/lib/authentication/authentication_repository.dart
@@ -32,7 +32,6 @@ class AuthenticationRepository {
Future<bool> doesTokenExist() async {
String? refreshtoken = await secureStorage.read(constants.refreshToken);
String? accesstoken = await secureStorage.read(constants.accessToken);
- print("qqq $accesstoken");
if (refreshtoken != null && accesstoken != null) {
return true;