File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
packages/web/src/app/[domain] Expand file tree Collapse file tree 2 files changed +6
-1
lines changed 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.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## [ Unreleased]
9
+
10
+ - Fixed onboarding infinite loop when GCP IAP Auth is enabled. [ #381 ] ( https://github.com/sourcebot-dev/sourcebot/pull/381 )
11
+
8
12
## [ 4.5.1] - 2025-07-14
9
13
10
14
### Changed
Original file line number Diff line number Diff line change @@ -95,7 +95,8 @@ export default async function Layout({
95
95
}
96
96
}
97
97
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 ) ) {
99
100
return (
100
101
< OnboardGuard >
101
102
{ children }
You can’t perform that action at this time.
0 commit comments