Skip to content

Commit cd9e3e8

Browse files
authored
[onboarding] skip for organizational accounts (#17058)
1 parent bc0230d commit cd9e3e8

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

components/gitpod-protocol/src/protocol.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,9 @@ export namespace User {
120120
}
121121

122122
export function isOnboardingUser(user: User) {
123+
if (!!user.organizationId) {
124+
return false;
125+
}
123126
return !hasPreferredIde(user);
124127
}
125128

0 commit comments

Comments
 (0)