webrtc works in dev, add some missing list keys

This commit is contained in:
Martti Malmi
2023-12-21 22:05:00 +02:00
parent e10a11b707
commit 1639937d8c
8 changed files with 18 additions and 13 deletions

View File

@ -49,8 +49,8 @@ const Footer = () => {
return (
<footer className="md:hidden fixed bottom-0 z-10 w-full bg-base-200 pb-safe-area bg-bg-color">
<div className="flex">
{MENU_ITEMS.map(item => (
<FooterNavItem item={item} readonly={readonly} />
{MENU_ITEMS.map((item, index) => (
<FooterNavItem key={index} item={item} readonly={readonly} />
))}
{publicKey && (
<ProfileLink