Skip to content

Commit 46e9f86

Browse files
fix(web): Fix anonymous access for unlimited seat license (#866)
1 parent 756634a commit 46e9f86

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
### Fixed
11+
- Fixed issue where anonymous access on a Sourcebot instance with a unlimited seat license and anonymous access enabled would result in a "not authenticated" message being displayed. [#866](https://github.com/sourcebot-dev/sourcebot/pull/866)
12+
1013
## [4.10.28] - 2026-02-07
1114

1215
### Added

packages/web/src/app/[domain]/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ export default async function Layout(props: LayoutProps) {
126126
)
127127
}
128128

129-
if (hasEntitlement("permission-syncing")) {
129+
if (session && hasEntitlement("permission-syncing")) {
130130
const linkedAccountProviderStates = await getLinkedAccountProviderStates();
131131
if (isServiceError(linkedAccountProviderStates)) {
132132
return (

0 commit comments

Comments
 (0)