diff --git a/versioned_docs/version-7.x/bottom-tab-navigator.md b/versioned_docs/version-7.x/bottom-tab-navigator.md index cfaf478245..63697da785 100755 --- a/versioned_docs/version-7.x/bottom-tab-navigator.md +++ b/versioned_docs/version-7.x/bottom-tab-navigator.md @@ -447,7 +447,7 @@ const Tabs = createBottomTabNavigator({ ```js ``` @@ -465,7 +465,7 @@ You can also render a compact sidebar by placing the label below the icon. This ```js const Tabs = createBottomTabNavigator({ screenOptions: { - tabBarPosition: isLargeScreen ? 'left' ? 'bottom', + tabBarPosition: isLargeScreen ? 'left' : 'bottom', tabBarVariant: isLargeScreen ? 'material' : 'uikit', tabBarLabelPosition: 'below-icon', }, diff --git a/versioned_docs/version-8.x/bottom-tab-navigator.md b/versioned_docs/version-8.x/bottom-tab-navigator.md index ed0c04c5ba..cea354d960 100755 --- a/versioned_docs/version-8.x/bottom-tab-navigator.md +++ b/versioned_docs/version-8.x/bottom-tab-navigator.md @@ -848,7 +848,7 @@ const Tabs = createBottomTabNavigator({ ```js ``` @@ -866,7 +866,7 @@ You can also render a compact sidebar by placing the label below the icon. This ```js const Tabs = createBottomTabNavigator({ screenOptions: { - tabBarPosition: isLargeScreen ? 'left' ? 'bottom', + tabBarPosition: isLargeScreen ? 'left' : 'bottom', tabBarVariant: isLargeScreen ? 'material' : 'uikit', tabBarLabelPosition: 'below-icon', },