From 16589fc19c4162cf9295c7f59dc2cc07a0e45476 Mon Sep 17 00:00:00 2001 From: Wira Irawan Date: Thu, 4 Jun 2026 13:53:41 +0700 Subject: [PATCH] Relax seller onboarding redirect rule --- src/app/(auth)/login/page.tsx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/app/(auth)/login/page.tsx b/src/app/(auth)/login/page.tsx index 29af4fc..a12f19c 100644 --- a/src/app/(auth)/login/page.tsx +++ b/src/app/(auth)/login/page.tsx @@ -95,10 +95,7 @@ export default function LoginPage() { const profileData = await profileRes.json(); const profile = profileData?.data || profileData; - const isIncomplete = - !profile?.storeName || - !profile?.biography || - !profile?.sellerImageUrl; + const isIncomplete = !profile?.storeName; if (isIncomplete || data.onboardingRequired) { router.push("/onboarding/business");