Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 779730c

Browse files
authoredMar 14, 2025··
Fix syntax error in tabBarPosition example (#1414)
1 parent d966834 commit 779730c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎versioned_docs/version-7.x/bottom-tab-navigator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -495,7 +495,7 @@ When the tab bar is positioned on the `left` or `right`, it is styled as a sideb
495495
```js
496496
const Tabs = createBottomTabNavigator({
497497
screenOptions: {
498-
tabBarPosition: isLargeScreen ? 'left' ? 'bottom',
498+
tabBarPosition: isLargeScreen ? 'left' : 'bottom',
499499
},
500500

501501
// ...

0 commit comments

Comments
 (0)
Please sign in to comment.