Skip to content

Commit 8b45876

Browse files
committed
fix(onboarding): has not tags dynamic
1 parent c582bd6 commit 8b45876

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/webapp/components/onboarding/OnboardingV2.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,8 @@ export const OnboardingV2 = (): ReactElement => {
339339
setSignupContext(null);
340340
}
341341

342-
const hasNoTags = true;
342+
const hasNoTags =
343+
apiResult.status !== 'fulfilled' || !apiResult.value?.length;
343344

344345
if (hasNoTags) {
345346
logEvent({

0 commit comments

Comments
 (0)