From 87524c673d54b3131cf3a6d7b88d2b8a8522f54f Mon Sep 17 00:00:00 2001 From: KenTandrian Date: Wed, 1 Jul 2026 08:49:14 +0700 Subject: [PATCH] feat(client): resolve type errors in settings storage service --- apps/client/src/app/services/settings-storage.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/app/services/settings-storage.service.ts b/apps/client/src/app/services/settings-storage.service.ts index 87d995d76..681552cf7 100644 --- a/apps/client/src/app/services/settings-storage.service.ts +++ b/apps/client/src/app/services/settings-storage.service.ts @@ -8,7 +8,7 @@ export const KEY_TOKEN = 'auth-token'; providedIn: 'root' }) export class SettingsStorageService { - public getSetting(aKey: string): string { + public getSetting(aKey: string): string | null { return window.localStorage.getItem(aKey); }