From e2f7b1e1ab402a592d1f65183de21f9b5aab84b0 Mon Sep 17 00:00:00 2001 From: Joel Brock Date: Fri, 5 Jun 2026 13:10:28 -0700 Subject: [PATCH] Staff report: drop unused StaffFileMeta type (YAGNI) --- types/form.ts | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/types/form.ts b/types/form.ts index 7f8b4c1..b4eb832 100644 --- a/types/form.ts +++ b/types/form.ts @@ -382,14 +382,3 @@ export interface StaffReportPayload { /** Option-group labels for any select/multiselect/stage field referenced. */ options: Record; } - -/** - * Metadata returned by /api/staff/file?id=&key= when called with the JSON - * Accept header. Not currently used by the UI — the file proxy normally - * streams bytes — but documented here for future use. - */ -export interface StaffFileMeta { - id: number; - fileName: string | null; - mimeType: string | null; -}