about summary refs log tree commit diff
path: root/src/components/dialogs/MutedWords.tsx
diff options
context:
space:
mode:
authorEric Bailey <git@esb.lol>2024-03-12 14:33:02 -0500
committerGitHub <noreply@github.com>2024-03-12 14:33:02 -0500
commiteeba0387b75d3583bfded8e5ed4366609375c767 (patch)
treea945dd3dd46e4f9c06bf44a7ce2729498d1fca0f /src/components/dialogs/MutedWords.tsx
parentc9d821c5725f491f5ff4ac240b50e4dd325c9f49 (diff)
downloadvoidsky-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.tsx4
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>
   )
 }