mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
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:
@@ -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!} />
|
||||
|
||||
|
||||
Reference in New Issue
Block a user