diff --git a/components/editor/comic-canvas.tsx b/components/editor/comic-canvas.tsx index ccd2956..54de1d4 100644 --- a/components/editor/comic-canvas.tsx +++ b/components/editor/comic-canvas.tsx @@ -1,19 +1,19 @@ -"use client" +"use client"; -import { RefreshCw, Download } from "lucide-react" -import { Button } from "@/components/ui/button" +import { RefreshCw, Download } from "lucide-react"; +import { Button } from "@/components/ui/button"; interface PageData { - id: number - title: string - image: string - prompt: string - characterUpload?: string - style: string + id: number; + title: string; + image: string; + prompt: string; + characterUpload?: string; + style: string; } interface ComicCanvasProps { - page: PageData + page: PageData; } export function ComicCanvas({ page }: ComicCanvasProps) { @@ -23,8 +23,11 @@ export function ComicCanvas({ page }: ComicCanvasProps) {