fix: remove gap between status bar and realtime controls in agent mode

- Only apply bottom padding to footer container when NOT in realtime mode
- When realtime is active, GlobalFooter handles the bottom padding
- This eliminates the large gap between status bar and realtime controls

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Mohamed Boudra
2025-10-24 11:19:58 +02:00
parent 9299bb5d4c
commit 7f15e7ebe3

View File

@@ -64,7 +64,7 @@ export default function AgentScreen() {
/>
{/* Footer area - status bar + controls */}
<View style={[styles.footerContainer, { paddingBottom: insets.bottom }]}>
<View style={[styles.footerContainer, !isRealtimeMode && { paddingBottom: insets.bottom }]}>
{/* Status bar - always visible, floating above controls */}
<AgentStatusBar agentId={id!} />