-
),
- cell: NumberInputCell,
+ cell: cell => (
+ <>
+
{cell.getValue()}
+
+ >
+ ),
meta: {
step: 10,
formSchema: pubSchema
diff --git a/src/app/publication/create.tsx b/src/app/publication/create.tsx
index 0a90c1a..1946173 100644
--- a/src/app/publication/create.tsx
+++ b/src/app/publication/create.tsx
@@ -5,6 +5,7 @@ import { ComponentProps } from "react";
import { Genre } from "@prisma/client";
import { createPub } from "app/lib/create";
import PubForm from "app/ui/forms/pub";
+import { Plus } from "lucide-react";
export default function CreatePubDialog({ genres }: ComponentProps<"div"> & { genres: Genre[] }) {
@@ -12,7 +13,10 @@ export default function CreatePubDialog({ genres }: ComponentProps<"div"> & { ge