From e429ffeab9f8d5a3c98f9f939bd5f557b73e0958 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Fri, 24 Apr 2026 03:35:42 +0000 Subject: [PATCH] Changes Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com> --- src/routes/inbox.index.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/routes/inbox.index.tsx b/src/routes/inbox.index.tsx index 6baef28..ef44246 100644 --- a/src/routes/inbox.index.tsx +++ b/src/routes/inbox.index.tsx @@ -29,6 +29,10 @@ interface IncomingEmail { is_archived: boolean; has_attachments: boolean; attachment_count: number; + case_id: string | null; + match_status: string; + match_suggestions: Array<{ case_id: string; score: number; reasons: string[] }>; + matched_case?: { id: string; case_number: string; title: string } | null; } function InboxPage() {