about summary refs log tree commit diff
path: root/src/components/ReportDialog
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2024-03-19 20:21:25 -0700
committerGitHub <noreply@github.com>2024-03-19 20:21:25 -0700
commit2e2fae378af09682370e9b4ebf59d32cae1b848c (patch)
tree8a29983c4cdd07bada12374179b4247fbf6c7434 /src/components/ReportDialog
parentb6c9d34e452405e8e735599967d6ebfb2abe99e9 (diff)
downloadvoidsky-2e2fae378af09682370e9b4ebf59d32cae1b848c.tar.zst
Set keyboardDismisMode to interactive on the report dialog (#3288)
Diffstat (limited to 'src/components/ReportDialog')
-rw-r--r--src/components/ReportDialog/index.tsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/components/ReportDialog/index.tsx b/src/components/ReportDialog/index.tsx
index f01ff3f3b..6a7aa6ff2 100644
--- a/src/components/ReportDialog/index.tsx
+++ b/src/components/ReportDialog/index.tsx
@@ -37,7 +37,9 @@ function ReportDialogInner(props: ReportDialogProps) {
   const isLoading = useDelayedLoading(500, isLabelerLoading)
 
   return (
-    <Dialog.ScrollableInner label="Report Dialog">
+    <Dialog.ScrollableInner
+      label="Report Dialog"
+      keyboardDismissMode="interactive">
       {isLoading ? (
         <View style={[a.align_center, {height: 100}]}>
           <Loader size="xl" />