diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-12-20 12:49:44 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-12-20 12:49:44 -0600 |
commit | abcfc11fe0e9f92fa2c63d7186270f4116ee72a6 (patch) | |
tree | a46c88ed3c3fe87ddb907801e0be73a55bbf4eac /src/view/com/modals/ServerInput.tsx | |
parent | 74d76fbc6ab9245a6966eae7f5e75b235edea7d3 (diff) | |
download | voidsky-abcfc11fe0e9f92fa2c63d7186270f4116ee72a6.tar.zst |
Wrap all <Text> in a helper that ensures black color is applied by default
Diffstat (limited to 'src/view/com/modals/ServerInput.tsx')
-rw-r--r-- | src/view/com/modals/ServerInput.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/view/com/modals/ServerInput.tsx b/src/view/com/modals/ServerInput.tsx index 15632ba39..1a841c0da 100644 --- a/src/view/com/modals/ServerInput.tsx +++ b/src/view/com/modals/ServerInput.tsx @@ -1,7 +1,8 @@ import React, {useState} from 'react' -import {Platform, StyleSheet, Text, TouchableOpacity, View} from 'react-native' +import {Platform, StyleSheet, TouchableOpacity, View} from 'react-native' import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' import {BottomSheetScrollView, BottomSheetTextInput} from '@gorhom/bottom-sheet' +import {Text} from '../util/Text' import {useStores} from '../../../state' import {s, colors} from '../../lib/styles' import { |