Fix pnpm build

This commit is contained in:
UltraLionFr
2025-08-20 16:41:27 +02:00
parent 3de3e6f35a
commit 9730e21999
16 changed files with 134 additions and 83 deletions
+2 -1
View File
@@ -1,10 +1,11 @@
'use client';
import type { Paste } from "@/types/paste";
import { CalendarDays, Copy, Download, Eye, FileText, Plus } from "lucide-react";
import { useRouter } from "next/navigation";
import { useState } from "react";
export default function PasteSidebar({ paste, id }: { paste: any; id: string }) {
export default function PasteSidebar({ paste, id }: { paste: Paste; id: string }) {
const [copied, setCopied] = useState(false);
const router = useRouter();