diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-11-20 12:00:40 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-11-20 12:00:40 -0600 |
commit | a21bcf10dd794b69009b98c7789a7e87d696bfef (patch) | |
tree | 544929e06cfd3643b6cfe300b03186831f1ae13e /src/view/com/modals/ServerInput.tsx | |
parent | 63348807b59ec82a905aa2a1164a1484e61aa29a (diff) | |
download | voidsky-a21bcf10dd794b69009b98c7789a7e87d696bfef.tar.zst |
Add build flags and disable tabs for now
Diffstat (limited to 'src/view/com/modals/ServerInput.tsx')
-rw-r--r-- | src/view/com/modals/ServerInput.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/view/com/modals/ServerInput.tsx b/src/view/com/modals/ServerInput.tsx index 0aa1a07e2..c885ff164 100644 --- a/src/view/com/modals/ServerInput.tsx +++ b/src/view/com/modals/ServerInput.tsx @@ -5,11 +5,11 @@ import {BottomSheetScrollView, BottomSheetTextInput} from '@gorhom/bottom-sheet' import {useStores} from '../../../state' import {s, colors} from '../../lib/styles' import { - IS_PROD_BUILD, LOCAL_DEV_SERVICE, STAGING_SERVICE, PROD_SERVICE, } from '../../../state/index' +import {LOGIN_INCLUDE_DEV_SERVERS} from '../../../build-flags' export const snapPoints = ['80%'] @@ -36,7 +36,7 @@ export function Component({ <Text style={[s.textCenter, s.bold, s.f18]}>Choose Service</Text> <BottomSheetScrollView style={styles.inner}> <View style={styles.group}> - {!IS_PROD_BUILD ? ( + {LOGIN_INCLUDE_DEV_SERVERS ? ( <> <TouchableOpacity style={styles.btn} |