diff --git a/apps/web/src/components/Editor/ZendoEditor.tsx b/apps/web/src/components/Editor/ZendoEditor.tsx index c1c2951..f1444c7 100644 --- a/apps/web/src/components/Editor/ZendoEditor.tsx +++ b/apps/web/src/components/Editor/ZendoEditor.tsx @@ -43,6 +43,7 @@ import { Database } from "@/types/supabase"; import { useBlogTags } from "./Editor.queries"; import { TagPicker } from "../Tags/TagPicker"; import { cn } from "@/lib/utils"; +import { Checkbox } from "../ui/checkbox"; const formSchema = z.object({ title: z.string(), @@ -364,16 +365,17 @@ export const ZendoEditor = (props: Props) => { )}
+ diff --git a/apps/web/src/components/ui/checkbox.tsx b/apps/web/src/components/ui/checkbox.tsx index a0a04f3..7b0779e 100644 --- a/apps/web/src/components/ui/checkbox.tsx +++ b/apps/web/src/components/ui/checkbox.tsx @@ -11,7 +11,7 @@ const Checkbox = React.forwardRef<