about summary refs log tree commit diff
path: root/src/components/Dialog/types.ts
diff options
context:
space:
mode:
authorEric Bailey <git@esb.lol>2025-03-05 18:31:55 -0600
committerGitHub <noreply@github.com>2025-03-05 16:31:55 -0800
commit3be87fbf3b9ab354cf8c439c6aeeb28ec2c2d764 (patch)
treea66e09248e9669b72c2c794ed347acdefbe1ac3c /src/components/Dialog/types.ts
parent9fde3957e76050a78c04509c84e5091f20975555 (diff)
downloadvoidsky-3be87fbf3b9ab354cf8c439c6aeeb28ec2c2d764.tar.zst
Add report dialog e2e tests (#7913)
Diffstat (limited to 'src/components/Dialog/types.ts')
-rw-r--r--src/components/Dialog/types.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/components/Dialog/types.ts b/src/components/Dialog/types.ts
index 32886f3ce..3ca64a321 100644
--- a/src/components/Dialog/types.ts
+++ b/src/components/Dialog/types.ts
@@ -68,7 +68,10 @@ export type DialogOuterProps = {
   testID?: string
 }
 
-type DialogInnerPropsBase<T> = React.PropsWithChildren<ViewStyleProp> & T
+type DialogInnerPropsBase<T> = React.PropsWithChildren<ViewStyleProp> &
+  T & {
+    testID?: string
+  }
 export type DialogInnerProps =
   | DialogInnerPropsBase<{
       label?: undefined