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