From 321f4087e1695b76584a3ef332a315f3378e0cc9 Mon Sep 17 00:00:00 2001 From: LandaMm Date: Sat, 31 May 2025 18:40:12 +0200 Subject: [PATCH] feat: delimiter color --- web/src/components/ui/breadcrumbs.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/components/ui/breadcrumbs.tsx b/web/src/components/ui/breadcrumbs.tsx index e503cfd..0763936 100644 --- a/web/src/components/ui/breadcrumbs.tsx +++ b/web/src/components/ui/breadcrumbs.tsx @@ -25,7 +25,7 @@ const Breadcrumbs: FC = ({ items, className }) => { ) : (

{item.label}

)} - {index + 1 < items.length &&

/

} + {index + 1 < items.length &&

/

} ))}