diff options
author | dan <dan.abramov@gmail.com> | 2024-10-25 23:04:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-25 23:04:54 +0100 |
commit | 2b53ef2541792197b59c54286e61aa54b496dc6f (patch) | |
tree | b53ffe0144058b72669084d10d2a3dcf4685cd13 /src/view/com/composer/Composer.tsx | |
parent | e05b4a910f1108905bfe0837619547282e3eefea (diff) | |
download | voidsky-2b53ef2541792197b59c54286e61aa54b496dc6f.tar.zst |
Fix missing style (#5944)
Diffstat (limited to 'src/view/com/composer/Composer.tsx')
-rw-r--r-- | src/view/com/composer/Composer.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/composer/Composer.tsx b/src/view/com/composer/Composer.tsx index af0326d90..5750e7f18 100644 --- a/src/view/com/composer/Composer.tsx +++ b/src/view/com/composer/Composer.tsx @@ -683,7 +683,7 @@ function ComposerTopBar({ <View style={a.flex_1} /> {isPublishing ? ( <> - <Text>{publishingStage}</Text> + <Text style={pal.textLight}>{publishingStage}</Text> <View style={styles.postBtn}> <ActivityIndicator /> </View> |