key this
This commit is contained in:
parent
24f7f73af2
commit
0a29264f53
1 changed files with 2 additions and 0 deletions
|
@ -65,6 +65,7 @@ export function ChatLayout<PropFormat>({
|
|||
onClick={channel.action}
|
||||
className={props.currentChannel === channel.name ? styles.Main_List_CurrentLink : ""}
|
||||
title={`#${channel.name}`}
|
||||
key={channel.name}
|
||||
>
|
||||
<div className={`fw ${styles.Main_List_Button}`}>
|
||||
<ConditionalNull condition={props.channelIndicators[channel.name]}>
|
||||
|
@ -96,6 +97,7 @@ export function ChatLayout<PropFormat>({
|
|||
href={`/jams/user/${user?.id}`}
|
||||
className={props.whoami?.id === user?.id ? styles.Main_List_CurrentLink : ""}
|
||||
title={`${user?.username}@${user?.instance}`}
|
||||
key={user?.id}
|
||||
>
|
||||
<div className={`fw ${styles.Main_List_Button}`}>
|
||||
<span className="icon">person</span>
|
||||
|
|
Loading…
Reference in a new issue