diff options
author | Eric Bailey <git@esb.lol> | 2025-03-05 18:31:55 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-05 16:31:55 -0800 |
commit | 3be87fbf3b9ab354cf8c439c6aeeb28ec2c2d764 (patch) | |
tree | a66e09248e9669b72c2c794ed347acdefbe1ac3c /src/components/Dialog | |
parent | 9fde3957e76050a78c04509c84e5091f20975555 (diff) | |
download | voidsky-3be87fbf3b9ab354cf8c439c6aeeb28ec2c2d764.tar.zst |
Add report dialog e2e tests (#7913)
Diffstat (limited to 'src/components/Dialog')
-rw-r--r-- | src/components/Dialog/types.ts | 5 |
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 |