Skip to content
This repository has been archived by the owner on Dec 21, 2023. It is now read-only.

Commit

Permalink
Update video upload store to allow more video
Browse files Browse the repository at this point in the history
formats
  • Loading branch information
hirbod committed Dec 7, 2023
1 parent b11b28f commit 4775dba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/app/components/upload/store/video-upload-store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export const videoUploadStore = proxy<VideoUploadStoreState>({
},
chooseVideo: async () => {
const video = await DocumentPicker.getDocumentAsync({
type: ["video/mp4"],
type: ["video/mp4", "video/quicktime", "video/mov"],
});
if (video.canceled) {
return false;
Expand Down

0 comments on commit 4775dba

Please sign in to comment.