From 2f2b18fadeac13fe8f9ed486177f1e687450f56b Mon Sep 17 00:00:00 2001 From: grimsi <9295182+grimsi@users.noreply.github.com> Date: Sat, 17 May 2025 22:34:41 +0200 Subject: [PATCH] Adjust return type of toNestedConfig --- gameyfin/src/main/frontend/state/ConfigState.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gameyfin/src/main/frontend/state/ConfigState.ts b/gameyfin/src/main/frontend/state/ConfigState.ts index b554083..ca650af 100644 --- a/gameyfin/src/main/frontend/state/ConfigState.ts +++ b/gameyfin/src/main/frontend/state/ConfigState.ts @@ -47,7 +47,7 @@ export type NestedConfig = { [field: string]: any; } -function toNestedConfig(entries: ConfigEntryDto[]): Record { +function toNestedConfig(entries: ConfigEntryDto[]): NestedConfig { const result: Record = {}; for (const entry of entries) {