diff options
Diffstat (limited to 'src/screens/Settings/AboutSettings.tsx')
-rw-r--r-- | src/screens/Settings/AboutSettings.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/screens/Settings/AboutSettings.tsx b/src/screens/Settings/AboutSettings.tsx index 8b1b1f76d..afae1096c 100644 --- a/src/screens/Settings/AboutSettings.tsx +++ b/src/screens/Settings/AboutSettings.tsx @@ -17,6 +17,7 @@ import {Globe_Stroke2_Corner0_Rounded as GlobeIcon} from '#/components/icons/Glo import {Newspaper_Stroke2_Corner2_Rounded as NewspaperIcon} from '#/components/icons/Newspaper' import {Wrench_Stroke2_Corner2_Rounded as WrenchIcon} from '#/components/icons/Wrench' import * as Layout from '#/components/Layout' +import {OTAInfo} from './components/OTAInfo' type Props = NativeStackScreenProps<CommonNavigatorParams, 'AboutSettings'> export function AboutSettingsScreen({}: Props) { @@ -92,6 +93,7 @@ export function AboutSettingsScreen({}: Props) { </SettingsList.ItemText> <SettingsList.BadgeText>{bundleInfo}</SettingsList.BadgeText> </SettingsList.PressableItem> + {devModeEnabled && <OTAInfo />} </SettingsList.Container> </Layout.Content> </Layout.Screen> |