From 080c0f644c495822da039591372c8c5ecfa9c231 Mon Sep 17 00:00:00 2001 From: Hunter Miller Date: Sat, 6 Aug 2022 17:18:00 -0500 Subject: [PATCH] tags: cleanup --- ui/src/components/Layout.tsx | 6 +++--- ui/src/pages/Tag.tsx | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ui/src/components/Layout.tsx b/ui/src/components/Layout.tsx index c111dc0..7eaff13 100644 --- a/ui/src/components/Layout.tsx +++ b/ui/src/components/Layout.tsx @@ -7,9 +7,9 @@ import useMedia from '../logic/useMedia'; import { BrowsingRoutes, PostingRoutes } from '../routes'; import { Meta } from './Meta'; -const DesktopNavLink = ({ to, children }: NavLinkProps) => ( +const DesktopNavLink = ({ to, children, ...props }: NavLinkProps) => (
  • - cn('hover:text-rosy transition-colors', isActive && 'underline')}> + cn('hover:text-rosy transition-colors', isActive && 'underline')} {...props}> { children }
  • @@ -60,7 +60,7 @@ export const Layout = () => { ) : (