diff options
author | Hailey <me@haileyok.com> | 2024-10-07 14:09:47 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-07 14:09:47 -0700 |
commit | ee25b89801c7038a95eb95500082dbccccb5cba9 (patch) | |
tree | 265b9380950ffa95d6fbfc8763cb5d6abc3500da /src/state/shell | |
parent | 94e7bfbe40ba6766361caaba99feff74a187613a (diff) | |
download | voidsky-ee25b89801c7038a95eb95500082dbccccb5cba9.tar.zst |
[Video] Add dimension info to share intent (#5639)
Diffstat (limited to 'src/state/shell')
-rw-r--r-- | src/state/shell/composer/index.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/state/shell/composer/index.tsx b/src/state/shell/composer/index.tsx index 1c3aa6a81..770b0789e 100644 --- a/src/state/shell/composer/index.tsx +++ b/src/state/shell/composer/index.tsx @@ -38,7 +38,7 @@ export interface ComposerOpts { openEmojiPicker?: (pos: DOMRect | undefined) => void text?: string imageUris?: {uri: string; width: number; height: number; altText?: string}[] - videoUri?: string + videoUri?: {uri: string; width: number; height: number} } type StateContext = ComposerOpts | undefined |