about summary refs log tree commit diff
path: root/src/state/shell/composer
diff options
context:
space:
mode:
authorHailey <me@haileyok.com>2024-10-07 14:09:47 -0700
committerGitHub <noreply@github.com>2024-10-07 14:09:47 -0700
commitee25b89801c7038a95eb95500082dbccccb5cba9 (patch)
tree265b9380950ffa95d6fbfc8763cb5d6abc3500da /src/state/shell/composer
parent94e7bfbe40ba6766361caaba99feff74a187613a (diff)
downloadvoidsky-ee25b89801c7038a95eb95500082dbccccb5cba9.tar.zst
[Video] Add dimension info to share intent (#5639)
Diffstat (limited to 'src/state/shell/composer')
-rw-r--r--src/state/shell/composer/index.tsx2
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