feat: add context menu functionality and delete buttons for plans and carreras; update dependencies

This commit is contained in:
2025-09-01 07:30:58 -06:00
parent 6c3dd54d5f
commit 0ff3387331
7 changed files with 412 additions and 33 deletions

View File

@@ -18,6 +18,7 @@ import confetti from "canvas-confetti"
import { Textarea } from "@/components/ui/textarea"
import { AuroraButton } from "@/components/effect/aurora-button"
import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs"
import { DeletePlanButton } from "@/components/planes/DeletePlan"
type LoaderData = { planId: string }
@@ -94,6 +95,7 @@ function RouteComponent() {
<div className='flex gap-2'>
<EditPlanButton plan={plan} />
<AdjustAIButton plan={plan} />
<DeletePlanButton planId={plan.id} />
</div>
</div>
</CardHeader>