diff --git a/src/app/story/edit.tsx b/src/app/story/edit.tsx index d64b575..423e6f3 100644 --- a/src/app/story/edit.tsx +++ b/src/app/story/edit.tsx @@ -5,7 +5,6 @@ import { Button } from "@/components/ui/button"; import { ComponentProps, useState } from "react"; import { Genre, Story } from "@prisma/client"; import StoryForm from "app/ui/forms/story"; -import { Plus } from "lucide-react"; export default function EditStoryDialog({ genres, closeDialog, defaults }: ComponentProps<"div"> & { genres: Genre[], closeDialog: () => void, defaults: Story }) {