diff options
author | dan <dan.abramov@gmail.com> | 2024-11-01 21:55:37 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-01 21:55:37 +0000 |
commit | 46004fb2d0afd2bca14fcbd1c45b077d1e3f3c6b (patch) | |
tree | 4bdd226c6065611ce9405ea58cc1dbaa035e1c86 /src/view/com/composer/text-input/TextInput.tsx | |
parent | d33ce1dea12e69dc9f7207086744b15414c2ba8f (diff) | |
download | voidsky-46004fb2d0afd2bca14fcbd1c45b077d1e3f3c6b.tar.zst |
Fix duplicates in thread composer (#6068)
Diffstat (limited to 'src/view/com/composer/text-input/TextInput.tsx')
-rw-r--r-- | src/view/com/composer/text-input/TextInput.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/view/com/composer/text-input/TextInput.tsx b/src/view/com/composer/text-input/TextInput.tsx index 5d8c49abf..b9c9579fb 100644 --- a/src/view/com/composer/text-input/TextInput.tsx +++ b/src/view/com/composer/text-input/TextInput.tsx @@ -44,6 +44,7 @@ interface TextInputProps extends ComponentProps<typeof RNTextInput> { richtext: RichText placeholder: string webForceMinHeight: boolean + isActive: boolean setRichText: (v: RichText) => void onPhotoPasted: (uri: string) => void onPressPublish: (richtext: RichText) => void |