From 6b56b16a2f94c22280620fa14b36dcc8376d64ed Mon Sep 17 00:00:00 2001 From: snehal gaurkhede Date: Thu, 27 Feb 2025 09:28:29 +0530 Subject: [PATCH] fix(instagram.collaborators.tsx): increase maximum video length for Instagram reel to 180 seconds to align with platform requirements --- .../launches/providers/instagram/instagram.collaborators.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/frontend/src/components/launches/providers/instagram/instagram.collaborators.tsx b/apps/frontend/src/components/launches/providers/instagram/instagram.collaborators.tsx index befe797f..42c6cfcf 100644 --- a/apps/frontend/src/components/launches/providers/instagram/instagram.collaborators.tsx +++ b/apps/frontend/src/components/launches/providers/instagram/instagram.collaborators.tsx @@ -80,8 +80,8 @@ export default withProvider( 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'; } }