diff options
author | Eric Bailey <git@esb.lol> | 2024-03-12 14:33:02 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-12 14:33:02 -0500 |
commit | eeba0387b75d3583bfded8e5ed4366609375c767 (patch) | |
tree | a945dd3dd46e4f9c06bf44a7ce2729498d1fca0f /src/components/dialogs/MutedWords.tsx | |
parent | c9d821c5725f491f5ff4ac240b50e4dd325c9f49 (diff) | |
download | voidsky-eeba0387b75d3583bfded8e5ed4366609375c767.tar.zst |
Small fixes (#3184)
* Fix alignment of MutedWords close button * Add cancel button to dropdowns * Revert "Add cancel button to dropdowns" This reverts commit b8f5ddce924311e439aeaa844a80d38f6e7da051.
Diffstat (limited to 'src/components/dialogs/MutedWords.tsx')
-rw-r--r-- | src/components/dialogs/MutedWords.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/dialogs/MutedWords.tsx b/src/components/dialogs/MutedWords.tsx index 658ba2aae..5f23a7883 100644 --- a/src/components/dialogs/MutedWords.tsx +++ b/src/components/dialogs/MutedWords.tsx @@ -254,9 +254,9 @@ function MutedWordsInner({}: {control: Dialog.DialogOuterProps['control']}) { </View> {isNative && <View style={{height: 20}} />} - - <Dialog.Close /> </View> + + <Dialog.Close /> </Dialog.ScrollableInner> ) } |