File tree Expand file tree Collapse file tree
packages/web/src/app/[domain] Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## [ Unreleased]
9+
10+ - Fixed onboarding infinite loop when GCP IAP Auth is enabled. [ #381 ] ( https://github.com/sourcebot-dev/sourcebot/pull/381 )
11+
812## [ 4.5.1] - 2025-07-14
913
1014### Changed
Original file line number Diff line number Diff line change @@ -95,7 +95,8 @@ export default async function Layout({
9595 }
9696 }
9797
98- if ( ! org . isOnboarded ) {
98+ // If the org is not onboarded, and GCP IAP is not enabled, show the onboarding page
99+ if ( ! org . isOnboarded && ! ( env . AUTH_EE_GCP_IAP_ENABLED && env . AUTH_EE_GCP_IAP_AUDIENCE ) ) {
99100 return (
100101 < OnboardGuard >
101102 { children }
You can’t perform that action at this time.
0 commit comments