From 8e59f5dbd3325c425db2c729ece5db7828381438 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sun, 7 Sep 2025 09:11:19 +0200 Subject: [PATCH] Feature/reorder functions in settings storage service (#5252) * 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); + } }