From 1726552a740e57916a5e5125416d00eaeaad7dce Mon Sep 17 00:00:00 2001 From: NOCanoa <158103554+NOCanoa@users.noreply.github.com> Date: Fri, 27 Sep 2024 22:17:01 +0100 Subject: [PATCH] umami fix --- src/components/navigation.tsx | 33 +++++++++++++++++++++++++++++---- 1 file changed, 29 insertions(+), 4 deletions(-) diff --git a/src/components/navigation.tsx b/src/components/navigation.tsx index aeba3ae..c532e02 100644 --- a/src/components/navigation.tsx +++ b/src/components/navigation.tsx @@ -109,20 +109,20 @@ export function Navigation() { @@ -152,6 +152,30 @@ export function Navigation() { const ListItem = React.forwardRef< React.ElementRef<"a">, React.ComponentPropsWithoutRef<"a"> +>(({ className, title, children, ...props }, ref) => { + return ( +
  • + + +
    {title}
    +

    + {children} +

    +
    +
    +
  • + ); +}); +const ListItem2 = React.forwardRef< + React.ElementRef<"a">, + React.ComponentPropsWithoutRef<"a"> >(({ className, title, children, ...props }, ref) => { return (
  • @@ -175,3 +199,4 @@ const ListItem = React.forwardRef< ); }); ListItem.displayName = "ListItem"; +ListItem.displayName = "ListItem2";