From 3c2ef130403b6c31aae90d553957f153c1123a76 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sat, 26 Jul 2025 08:41:22 +0200 Subject: [PATCH] Reorder functions --- apps/client/src/app/services/settings-storage.service.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/client/src/app/services/settings-storage.service.ts b/apps/client/src/app/services/settings-storage.service.ts index add224fd8..87d995d76 100644 --- a/apps/client/src/app/services/settings-storage.service.ts +++ b/apps/client/src/app/services/settings-storage.service.ts @@ -12,11 +12,11 @@ export class SettingsStorageService { return window.localStorage.getItem(aKey); } - public setSetting(aKey: string, aValue: string) { - window.localStorage.setItem(aKey, aValue); - } - public removeSetting(aKey: string) { return window.localStorage.removeItem(aKey); } + + public setSetting(aKey: string, aValue: string) { + window.localStorage.setItem(aKey, aValue); + } }