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() {