This commit is contained in:
2026-06-04 12:32:44 -04:00
parent 7c00c14d9e
commit 814f3a3858
3 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -45,7 +45,7 @@ public class StorageService : IStorageService
public T GetValue<T>(string forKey)
{
return _localStorageService.GetItem<T>(forKey);
return _localStorageService.GetItem<T>(forKey)!;
}
public void SetValue<T>(string key, T value)