Skip to content

Commit

Permalink
fix: adjust browser view when multiple tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
ziad-saab committed Jan 31, 2025
1 parent 75fc813 commit fd863ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/components/Views/BrowserTab/BrowserTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1307,10 +1307,10 @@ export const BrowserTab: React.FC<BrowserTabProps> = ({
<ErrorBoundary navigation={navigation} view="BrowserTab">
<KeyboardAvoidingView
behavior={Platform.OS === 'ios' ? 'padding' : 'height'}
style={styles.wrapper}
style={[styles.wrapper, !isTabActive && styles.hide]}
>
<View
style={[styles.wrapper, !isTabActive && styles.hide]}
style={styles.wrapper}
{...(Device.isAndroid() ? { collapsable: false } : {})}
>
<BrowserUrlBar
Expand Down

0 comments on commit fd863ea

Please sign in to comment.