Fix text color in composer

zio/stable
Paul Frazee 2023-01-19 20:08:43 -06:00
parent 142b5dfc1b
commit 620d5bb102
1 changed files with 1 additions and 1 deletions

View File

@ -285,7 +285,7 @@ export const ComposePost = observer(function ComposePost({
return detectLinkables(text).map(v => {
if (typeof v === 'string') {
return (
<Text key={i++} style={styles.textInputFormatting}>
<Text key={i++} style={[pal.text, styles.textInputFormatting]}>
{v}
</Text>
)