use the palette's font color in the composer (as string) (#2792)

zio/stable
Hailey 2024-02-08 07:39:33 -08:00 committed by GitHub
parent 83edb4446d
commit 390a9f3dd5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 1 deletions

View File

@ -228,7 +228,10 @@ export const TextInput = React.forwardRef(function TextInputImpl(
return (
<>
<View style={styles.container}>
<EditorContent editor={editor} style={{color: pal.text.color}} />
<EditorContent
editor={editor}
style={{color: pal.text.color as string}}
/>
</View>
{isDropping && (