fix(instagram.collaborators.tsx): increase maximum video length for Instagram reel to 180 seconds to align with platform requirements
This commit is contained in:
parent
64d2fddd24
commit
6b56b16a2f
|
|
@ -80,8 +80,8 @@ export default withProvider<InstagramDto>(
|
|||
return 'Instagram stories should be maximum 60 seconds';
|
||||
}
|
||||
|
||||
if (video > 90 && settings.post_type === 'post') {
|
||||
return 'Instagram reel should be maximum 90 seconds';
|
||||
if (video > 180 && settings.post_type === 'post') {
|
||||
return 'Instagram reel should be maximum 180 seconds';
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue