Description:
Since 23 June 2025, the chat history within projects/folders in ChatGPT (web and desktop app) does not scroll or expand. The “See all” button in the sidebar and central panel is unresponsive. Only the latest 10–20 chats are visible.
What I’ve tried:
– Tested on multiple browsers (Chrome, Edge, Yandex), with/without extensions, cleared cache/cookies
– Used Incognito mode, new Windows user profile, updated drivers
– Installed the official desktop app via msixbundle and Microsoft Store
– Used third-party ChatGPT clients (Noi, etc.) — same result
– Changed region, used VPN, tried on different networks/devices
– Problem persists everywhere except on the official mobile app (iOS/Android), where chat history and “See all” work fine
Business Impact:
This makes it impossible to access past project discussions from desktop/web, which is critical for audit, collaboration, and business continuity.
Ask:
Please escalate this to the engineering team. Would appreciate any temporary workaround, and information on planned fixes.
Additional diagnostic detail:
— The issue with chat history and “See all” is present in the ChatGPT desktop app on multiple devices, regardless of account.
— In the browser on the same device (and same account), everything works as expected — the bug is not present.
— This suggests a feature flag or interface rollout issue unique to the desktop app version.
— Please advise when a fix is planned, or if it is possible to force the “old” interface in the desktop app.
Same issue here I’m on ChatGPT Plus. This is rendering the Projects folder feature useless. It was previously working to display all chats added to a project, (not just the recent 5) prior to some of the last releases. Please fix. thank you!
Also since the other chats were placed in a project folder, there is no way to retrieve them other than removing them from the project (on my mobile) so that they can reappear in the history section. This is clearly a bug.
FYI, my workaround at the moment is to use the mobile app (android) to scroll down and find the conversation i need then say something benign like “Hello” to bring it back to the top of the list to view on desktop/browser.
In Chrome, go to chrome://extensions/ and enable Developer mode.
Click on “Load unpacked” and select the folder.
Result: Your script will automatically run on all ChatGPT pages.
MANIFEST.JSON (replace ChatCPT with the URL of ChatCPT):
{
“manifest_version”: 3,
“name”: “ChatGPT Scroll Fix”,
“version”: “1.0”,
“description”: “Fixes scroll behavior in ChatGPT project threads.”,
“content_scripts”: [
{
“matches”: [“link ChatGPT*”],
“js”: [“fix.js”],
“run_at”: “document_idle”
}
],
“permissions”:
}
FIX.JS
(function removeComposerParentClass() {
function removeClassFromTarget() {
const elements = document.querySelectorAll(‘div[role=“presentation”]’);
for (const el of elements) {
if (el.classList.contains(‘composer-parent’)) {
el.removeAttribute(‘class’);
break;
}
}
}
Up, same issue here. Thanks to those who posted solutions and workarounds, although I think we all hope that OpenAI will resolve this natively as soon as possible. Chat and folder management is crucial for work.