From eb69135f2c3802977cf557b5d67e7514bce19d58 Mon Sep 17 00:00:00 2001 From: Marcel Date: Wed, 20 May 2026 23:03:35 +0200 Subject: [PATCH] refactor(frontend): drop unused message field from ApiError interface Co-Authored-By: Claude Sonnet 4.6 --- frontend/src/lib/shared/api.server.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/src/lib/shared/api.server.ts b/frontend/src/lib/shared/api.server.ts index b1aab396..97b0fbf7 100644 --- a/frontend/src/lib/shared/api.server.ts +++ b/frontend/src/lib/shared/api.server.ts @@ -26,7 +26,6 @@ export function createApiClient(fetch: typeof globalThis.fetch) { export interface ApiError { code?: string; - message?: string; } export function extractErrorCode(error: unknown): string | undefined {