Skip to content

Commit 6b56b16

Browse files
committed
fix(instagram.collaborators.tsx): increase maximum video length for Instagram reel to 180 seconds to align with platform requirements
1 parent 64d2fdd commit 6b56b16

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/frontend/src/components/launches/providers/instagram/instagram.collaborators.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ export default withProvider<InstagramDto>(
8080
return 'Instagram stories should be maximum 60 seconds';
8181
}
8282

83-
if (video > 90 && settings.post_type === 'post') {
84-
return 'Instagram reel should be maximum 90 seconds';
83+
if (video > 180 && settings.post_type === 'post') {
84+
return 'Instagram reel should be maximum 180 seconds';
8585
}
8686
}
8787

0 commit comments

Comments
 (0)