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/screens/Contacts.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/screens/Contacts.tsx')
-rw-r--r-- | src/view/screens/Contacts.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/view/screens/Contacts.tsx b/src/view/screens/Contacts.tsx index be92f74c9..05256a7eb 100644 --- a/src/view/screens/Contacts.tsx +++ b/src/view/screens/Contacts.tsx @@ -1,8 +1,9 @@ import React, {useEffect, useState, useRef} from 'react' -import {StyleSheet, Text, TextInput, View} from 'react-native' +import {StyleSheet, TextInput, View} from 'react-native' import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' import {ProfileFollows as ProfileFollowsComponent} from '../com/profile/ProfileFollows' import {Selector} from '../com/util/Selector' +import {Text} from '../com/util/Text' import {colors} from '../lib/styles' import {ScreenParams} from '../routes' import {useStores} from '../../state' |