diff --git a/src/layout/ChatLayout/ChatLayout.tsx b/src/layout/ChatLayout/ChatLayout.tsx index acd3b7e..4e5702d 100644 --- a/src/layout/ChatLayout/ChatLayout.tsx +++ b/src/layout/ChatLayout/ChatLayout.tsx @@ -65,6 +65,7 @@ export function ChatLayout({ onClick={channel.action} className={props.currentChannel === channel.name ? styles.Main_List_CurrentLink : ""} title={`#${channel.name}`} + key={channel.name} >
@@ -96,6 +97,7 @@ export function ChatLayout({ href={`/jams/user/${user?.id}`} className={props.whoami?.id === user?.id ? styles.Main_List_CurrentLink : ""} title={`${user?.username}@${user?.instance}`} + key={user?.id} >
person