refactor(frontend): drop unused message field from ApiError interface

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Marcel
2026-05-20 23:03:35 +02:00
committed by marcel
parent 2914010b68
commit f1a61278f9

View File

@@ -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 {