From e362bc49773770db82f5f318641253d2b04ebb14 Mon Sep 17 00:00:00 2001 From: Marcel Date: Thu, 2 Apr 2026 11:41:03 +0200 Subject: [PATCH] =?UTF-8?q?feat(topbar):=20remove=20DocumentStatusChip=20?= =?UTF-8?q?=E2=80=94=20status=20dot=20has=20no=20value=20for=20users?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Sonnet 4.6 --- frontend/src/lib/components/DocumentTopBar.svelte | 5 ----- 1 file changed, 5 deletions(-) diff --git a/frontend/src/lib/components/DocumentTopBar.svelte b/frontend/src/lib/components/DocumentTopBar.svelte index 9a468dd7..e91f85a9 100644 --- a/frontend/src/lib/components/DocumentTopBar.svelte +++ b/frontend/src/lib/components/DocumentTopBar.svelte @@ -3,11 +3,9 @@ import { m } from '$lib/paraglide/messages.js'; import { formatDate } from '$lib/utils/personFormat'; import { clickOutside } from '$lib/actions/clickOutside'; import PersonChipRow from './PersonChipRow.svelte'; -import DocumentStatusChip from './DocumentStatusChip.svelte'; import AnnotateHintStrip from './AnnotateHintStrip.svelte'; import OverflowPillButton from './OverflowPillButton.svelte'; -type DocumentStatus = 'PLACEHOLDER' | 'UPLOADED' | 'TRANSCRIBED' | 'REVIEWED' | 'ARCHIVED'; type Person = { id: string; firstName: string; lastName: string }; type Doc = { @@ -15,7 +13,6 @@ type Doc = { title?: string | null; originalFilename?: string | null; documentDate?: string | null; - status: DocumentStatus; sender?: Person | null; receivers?: Person[] | null; filePath?: string | null; @@ -158,8 +155,6 @@ let mobileMenuOpen = $state(false); {/if} - -
{#if canAnnotate && isPdf && !annotateMode}