From 12f6b417d2a60b8fb2fafb5ca16964da9585d5e4 Mon Sep 17 00:00:00 2001 From: Eliezer Steinbock <3090527+elie222@users.noreply.github.com> Date: Sun, 22 Dec 2024 15:44:02 +0200 Subject: [PATCH] Fix build --- apps/web/app/(app)/smart-categories/Uncategorized.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/web/app/(app)/smart-categories/Uncategorized.tsx b/apps/web/app/(app)/smart-categories/Uncategorized.tsx index 9b7c676d..76e4e0e5 100644 --- a/apps/web/app/(app)/smart-categories/Uncategorized.tsx +++ b/apps/web/app/(app)/smart-categories/Uncategorized.tsx @@ -9,7 +9,6 @@ import { SendersTable } from "@/components/GroupedTable"; import { LoadingContent } from "@/components/LoadingContent"; import { Button } from "@/components/ui/button"; import type { UncategorizedSendersResponse } from "@/app/api/user/categorize/senders/uncategorized/route"; -import type { Category } from "@prisma/client"; import { TopBar } from "@/components/TopBar"; import { toastError } from "@/components/Toast"; import { @@ -42,7 +41,7 @@ export function Uncategorized({ const senders = useMemo( () => senderAddresses?.map((address) => { - return { address, categoryId: null }; + return { address, category: null }; }), [senderAddresses], );