diff --git a/app/(app)/companies/[id]/deals/page.tsx b/app/(app)/companies/[id]/deals/page.tsx index a75cb15..0cc387d 100644 --- a/app/(app)/companies/[id]/deals/page.tsx +++ b/app/(app)/companies/[id]/deals/page.tsx @@ -3,6 +3,7 @@ import { db } from "@/db/client"; import { deals, stages } from "@/db/schema/deals"; import { StagePill } from "@/components/pills"; import { money, relativeTime } from "@/lib/format"; +import { DeleteDealButton } from "@/app/(app)/deals/delete-deal-button"; export default async function DealsTab({ params }: { params: Promise<{ id: string }> }) { const { id } = await params; @@ -41,13 +42,14 @@ export default async function DealsTab({ params }: { params: Promise<{ id: strin {h} ))} +
{n.body} diff --git a/app/(app)/companies/[id]/people/page.tsx b/app/(app)/companies/[id]/people/page.tsx index 7b21591..cf4ea4a 100644 --- a/app/(app)/companies/[id]/people/page.tsx +++ b/app/(app)/companies/[id]/people/page.tsx @@ -5,6 +5,7 @@ import { people } from "@/db/schema/companies"; import { AvatarSquare } from "@/components/avatar-init"; import { EngagementPill, PersonaPill } from "@/components/pills"; import { relativeTime } from "@/lib/format"; +import { DeletePersonButton } from "@/app/(app)/people/delete-person-button"; export default async function PeopleTab({ params }: { params: Promise<{ id: string }> }) { const { id } = await params; @@ -37,7 +38,7 @@ export default async function PeopleTab({ params }: { params: Promise<{ id: stri {rows.map((p) => (