diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-11-21 18:55:08 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-11-21 18:55:08 -0600 |
commit | e858bb52de180645bba4f5ffa2f8bc0cfe8ad1fe (patch) | |
tree | 120b5be2ed657b7f8d30d56016d1a0857bb98086 /src/view/com/modals/ServerInput.tsx | |
parent | b2dba9a15b0b27c9221808ff037090c2b4c2d500 (diff) | |
parent | 7e487fd5ae053ebb4373b85f1b3d7aa66f8a0241 (diff) | |
download | voidsky-e858bb52de180645bba4f5ffa2f8bc0cfe8ad1fe.tar.zst |
Merge branch 'simplify' into main
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} |