Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
elie222 committed Dec 22, 2024
1 parent 159ccbb commit 12f6b41
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions apps/web/app/(app)/smart-categories/Uncategorized.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -42,7 +41,7 @@ export function Uncategorized({
const senders = useMemo(
() =>
senderAddresses?.map((address) => {
return { address, categoryId: null };
return { address, category: null };
}),
[senderAddresses],
);
Expand Down

1 comment on commit 12f6b41

@vercel
Copy link

@vercel vercel bot commented on 12f6b41 Dec 22, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.