Remove No Active Call text when not in a call

This commit is contained in:
Gigiaj 2025-06-18 18:39:30 -05:00
parent 7712e34d22
commit 20815390e6

View file

@ -22,20 +22,7 @@ export function CallNavStatus() {
} }
}; };
if (!isCallActive) { if (!isCallActive) {
return ( return null;
<Box
direction="Column"
gap="500"
style={{
flexShrink: 0,
borderTop: `1px solid #e0e0e0`,
}}
>
<Text size="T200" color="Muted" align="Center">
No active call
</Text>
</Box>
);
} }
return ( return (