From 36e4b8b636f3d5326f31649f806dbb4b2dbb60ae 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:37:00 +0000 Subject: [PATCH] Changes Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com> --- src/routes/inbox.index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/inbox.index.tsx b/src/routes/inbox.index.tsx index 8cd547e..cd6a4f6 100644 --- a/src/routes/inbox.index.tsx +++ b/src/routes/inbox.index.tsx @@ -57,7 +57,7 @@ function InboxPage() { if (error) { toast.error("Failed to load inbox", { description: error.message }); } else { - setEmails((data as IncomingEmail[]) ?? []); + setEmails((data as unknown as IncomingEmail[]) ?? []); } setLoading(false); };