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/shell/mobile/TabsSelector.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/shell/mobile/TabsSelector.tsx')
-rw-r--r-- | src/view/shell/mobile/TabsSelector.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/shell/mobile/TabsSelector.tsx b/src/view/shell/mobile/TabsSelector.tsx index 28f488f01..d44a8e0c6 100644 --- a/src/view/shell/mobile/TabsSelector.tsx +++ b/src/view/shell/mobile/TabsSelector.tsx @@ -5,12 +5,12 @@ import { ScrollView, Share, StyleSheet, - Text, TouchableWithoutFeedback, View, } from 'react-native' import {useSafeAreaInsets} from 'react-native-safe-area-context' import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' +import {Text} from '../../com/util/Text' import Swipeable from 'react-native-gesture-handler/Swipeable' import {useStores} from '../../../state' import {s, colors} from '../../lib/styles' |