This commit is contained in:
MeowcaTheoRange 2024-05-09 19:04:56 -05:00
parent 24f7f73af2
commit 0a29264f53

View file

@ -65,6 +65,7 @@ export function ChatLayout<PropFormat>({
onClick={channel.action} onClick={channel.action}
className={props.currentChannel === channel.name ? styles.Main_List_CurrentLink : ""} className={props.currentChannel === channel.name ? styles.Main_List_CurrentLink : ""}
title={`#${channel.name}`} title={`#${channel.name}`}
key={channel.name}
> >
<div className={`fw ${styles.Main_List_Button}`}> <div className={`fw ${styles.Main_List_Button}`}>
<ConditionalNull condition={props.channelIndicators[channel.name]}> <ConditionalNull condition={props.channelIndicators[channel.name]}>
@ -96,6 +97,7 @@ export function ChatLayout<PropFormat>({
href={`/jams/user/${user?.id}`} href={`/jams/user/${user?.id}`}
className={props.whoami?.id === user?.id ? styles.Main_List_CurrentLink : ""} className={props.whoami?.id === user?.id ? styles.Main_List_CurrentLink : ""}
title={`${user?.username}@${user?.instance}`} title={`${user?.username}@${user?.instance}`}
key={user?.id}
> >
<div className={`fw ${styles.Main_List_Button}`}> <div className={`fw ${styles.Main_List_Button}`}>
<span className="icon">person</span> <span className="icon">person</span>