From 479b76dc2640a1ba5d382cfddf84fd3a9452373e Mon Sep 17 00:00:00 2001 From: "J. A. Messias" Date: Tue, 1 Oct 2024 09:42:48 -0300 Subject: [PATCH] WIP --- lib/shared/utils/storage_util.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/shared/utils/storage_util.dart b/lib/shared/utils/storage_util.dart index ba24c232..65568943 100644 --- a/lib/shared/utils/storage_util.dart +++ b/lib/shared/utils/storage_util.dart @@ -128,6 +128,7 @@ class StorageUtil { isFirstRun = _sharedPreferences.prefs?.getBool('first_run') ?? true; if (isFirstRun) { isFirstRun = false; + await _sharedPreferences.prefs?.setBool('first_run', false); _secureStorage.purge(); } }