Fixes#2867 — Request Logs page shows "No results found" on initial load in Community Edition (OSS build), requiring a manual Refresh click to populate data.
Root cause: The useEffect responsible for fetching logs on mount had an early-return guard if (build === "oss") return, which completely skipped the initial data fetch on CE. EE was unaffected because the guard only triggered for the oss build.
Change: Removed the build === "oss" guard from the mount effect in src/app/[orgId]/settings/logs/request/page.tsx and cleaned up the now-unused build import. The fetch now runs on all builds, consistent with EE behaviour.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.
## 📋 Pull Request Information
**Original PR:** https://github.com/fosrl/pangolin/pull/3223
**Author:** [@Adityakk9031](https://github.com/Adityakk9031)
**Created:** 6/5/2026
**Status:** 🔄 Open
**Base:** `dev` ← **Head:** `#2867`
---
### 📝 Commits (1)
- [`13b691f`](https://github.com/fosrl/pangolin/commit/13b691fd7d3af4cfe83251a0918b0ee79732c24a) fix: request logs not loading on initial page open in Community Edition (#2867)
### 📊 Changes
**1 file changed** (+1 additions, -3 deletions)
<details>
<summary>View changed files</summary>
📝 `src/app/[orgId]/settings/logs/request/page.tsx` (+1 -3)
</details>
### 📄 Description
Fixes #2867 — Request Logs page shows "No results found" on initial load in Community Edition (OSS build), requiring a manual Refresh click to populate data.
Root cause: The useEffect responsible for fetching logs on mount had an early-return guard if (build === "oss") return, which completely skipped the initial data fetch on CE. EE was unaffected because the guard only triggered for the oss build.
Change: Removed the build === "oss" guard from the mount effect in src/app/[orgId]/settings/logs/request/page.tsx and cleaned up the now-unused build import. The fetch now runs on all builds, consistent with EE behaviour.
---
<sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
📋 Pull Request Information
Original PR: https://github.com/fosrl/pangolin/pull/3223
Author: @Adityakk9031
Created: 6/5/2026
Status: 🔄 Open
Base:
dev← Head:#2867📝 Commits (1)
13b691ffix: request logs not loading on initial page open in Community Edition (#2867)📊 Changes
1 file changed (+1 additions, -3 deletions)
View changed files
📝
src/app/[orgId]/settings/logs/request/page.tsx(+1 -3)📄 Description
Fixes #2867 — Request Logs page shows "No results found" on initial load in Community Edition (OSS build), requiring a manual Refresh click to populate data.
Root cause: The useEffect responsible for fetching logs on mount had an early-return guard if (build === "oss") return, which completely skipped the initial data fetch on CE. EE was unaffected because the guard only triggered for the oss build.
Change: Removed the build === "oss" guard from the mount effect in src/app/[orgId]/settings/logs/request/page.tsx and cleaned up the now-unused build import. The fetch now runs on all builds, consistent with EE behaviour.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.