Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add labels in list card (#4837)

authored by

Eric Bailey and committed by
GitHub
e7b485f1 ac1538ba

+3 -3
+3 -3
src/components/ListCard.tsx
··· 44 44 export function Default(props: Props) { 45 45 const {view, showPinButton} = props 46 46 return ( 47 - <Link label={view.name} {...props}> 47 + <Link {...props}> 48 48 <Outer> 49 49 <Header> 50 50 <Avatar src={view.avatar} /> ··· 67 67 view, 68 68 children, 69 69 ...props 70 - }: Props & Omit<LinkProps, 'to'>) { 70 + }: Props & Omit<LinkProps, 'to' | 'label'>) { 71 71 const queryClient = useQueryClient() 72 72 73 73 const href = React.useMemo(() => { ··· 79 79 }, [view, queryClient]) 80 80 81 81 return ( 82 - <InternalLink to={href} {...props}> 82 + <InternalLink label={view.name} to={href} {...props}> 83 83 {children} 84 84 </InternalLink> 85 85 )