Browse Source

feat(client): resolve type errors in settings storage service

pull/7175/head
KenTandrian 2 weeks ago
parent
commit
87524c673d
  1. 2
      apps/client/src/app/services/settings-storage.service.ts

2
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);
}

Loading…
Cancel
Save