fix(instagram.collaborators.tsx): increase maximum video length for Instagram reel to 180 seconds to align with platform requirements

This commit is contained in:
snehal gaurkhede 2025-02-27 09:28:29 +05:30
parent 64d2fddd24
commit 6b56b16a2f
1 changed files with 2 additions and 2 deletions

View File

@ -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';
}
}