From ce59e4650280af7f09a6c141fcdbed3eea7234d6 Mon Sep 17 00:00:00 2001 From: Jordi Enric Date: Fri, 3 May 2024 02:34:41 +0200 Subject: [PATCH] improve checkbox --- apps/web/src/components/Editor/ZendoEditor.tsx | 8 +++++--- apps/web/src/components/ui/checkbox.tsx | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) 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<