From 302630b519d53fbb9bb077b5d25f8603a4ce3f19 Mon Sep 17 00:00:00 2001 From: E44 <129310925+programmer-44@users.noreply.github.com> Date: Wed, 26 Nov 2025 11:26:46 +0100 Subject: [PATCH] refactor(control): change folder_element id from optional to required --- control/frontend/src/ts/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/control/frontend/src/ts/types.ts b/control/frontend/src/ts/types.ts index 91a3391..aabf2ac 100644 --- a/control/frontend/src/ts/types.ts +++ b/control/frontend/src/ts/types.ts @@ -29,7 +29,7 @@ export const supported_file_type_icon: Record = { } export type FolderElement = { - id?: string; + id: string; hash: string; name: string; type: string;