From df79ce619fd713a9fcc9ccea0522fda76ba3c49c Mon Sep 17 00:00:00 2001 From: kevinmitch14 <55989505+kevinmitch14@users.noreply.github.com> Date: Thu, 7 Mar 2024 22:01:04 -0300 Subject: [PATCH] fix: use `??` instead of `||` --- apps/www/public/registry/styles/default/breadcrumb.json | 2 +- apps/www/public/registry/styles/new-york/breadcrumb.json | 2 +- apps/www/registry/default/ui/breadcrumb.tsx | 2 +- apps/www/registry/new-york/ui/breadcrumb.tsx | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/www/public/registry/styles/default/breadcrumb.json b/apps/www/public/registry/styles/default/breadcrumb.json index 441bf64231f..0fc27fae7e1 100644 --- a/apps/www/public/registry/styles/default/breadcrumb.json +++ b/apps/www/public/registry/styles/default/breadcrumb.json @@ -6,7 +6,7 @@ "files": [ { "name": "breadcrumb.tsx", - "content": "import * as React from \"react\"\nimport { Slot } from \"@radix-ui/react-slot\"\nimport { ChevronRight, MoreHorizontal } from \"lucide-react\"\n\nimport { cn } from \"@/lib/utils\"\n\nconst Breadcrumb = React.forwardRef<\n HTMLElement,\n React.ComponentPropsWithoutRef<\"nav\"> & {\n separator?: React.ReactNode\n }\n>(({ ...props }, ref) =>