Link tags aren't hiding sidebar on click

This commit is contained in:
Ian Philips 2022-08-03 16:30:05 -06:00
parent fab83cfc33
commit 756115ba54

View File

@ -322,14 +322,13 @@ function GroupsList(props: {
ref={setContainerRef} ref={setContainerRef}
> >
{memberItems.map((item) => ( {memberItems.map((item) => (
<Link <a
href={ href={
item.href + item.href +
(notifIsForThisItem(item.href) ? '/' + GROUP_CHAT_SLUG : '') (notifIsForThisItem(item.href) ? '/' + GROUP_CHAT_SLUG : '')
} }
key={item.href} key={item.name}
> onClick={trackCallback('sidebar: ' + item.name)}
<span
className={clsx( className={clsx(
'cursor-pointer truncate', 'cursor-pointer truncate',
'group flex items-center rounded-md px-3 py-2 text-sm font-medium text-gray-600 hover:bg-gray-100 hover:text-gray-900', 'group flex items-center rounded-md px-3 py-2 text-sm font-medium text-gray-600 hover:bg-gray-100 hover:text-gray-900',
@ -337,8 +336,7 @@ function GroupsList(props: {
)} )}
> >
{item.name} {item.name}
</span> </a>
</Link>
))} ))}
</div> </div>
</> </>