From 6c823d94d6297a2341d6cd817405d83bf3de21a0 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Thu, 25 Jul 2024 16:42:23 -0500 Subject: [PATCH] Add labels in list card --- src/components/ListCard.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/ListCard.tsx b/src/components/ListCard.tsx index c0e0d0e255..0ed27cf50f 100644 --- a/src/components/ListCard.tsx +++ b/src/components/ListCard.tsx @@ -44,7 +44,7 @@ type Props = { export function Default(props: Props) { const {view, showPinButton} = props return ( - +
@@ -67,7 +67,7 @@ export function Link({ view, children, ...props -}: Props & Omit) { +}: Props & Omit) { const queryClient = useQueryClient() const href = React.useMemo(() => { @@ -79,7 +79,7 @@ export function Link({ }, [view, queryClient]) return ( - + {children} )