Add call status to bottom of home nav

This commit is contained in:
GigiaJ 2025-04-21 01:39:12 -04:00
parent 7ebf26e34b
commit 79b4303154

View file

@ -53,6 +53,7 @@ import {
getRoomNotificationMode,
useRoomsNotificationPreferencesContext,
} from '../../../hooks/useRoomsNotificationPreferences';
import { CallNavBottom } from '../../call/CallNavBottom';
type HomeMenuProps = {
requestClose: () => void;
@ -336,6 +337,7 @@ export function Home() {
</Box>
</PageNavContent>
)}
<CallNavBottom />
</PageNav>
);
}