I am experiencing the issue where the all chats doesn’t load in the project. this is only on the web, mobile seems to be working fine. I can’t scroll down in the project folder, and can’t access all chats. It looks that not all chats are loading in project, causing this issue.
using this script for the workaround.
// ==UserScript==
// @name ChatGPT Scroll Unlock
// @namespace https://example.com/
// @version 0.1
// @description Remove overflow-hidden so the left pane can scroll
// @match https://chatgpt.com/*
// @run-at document-idle
// @grant none
// ==/UserScript==
(function () {
'use strict';
const unlock = () => {
document
.querySelectorAll('div[role="presentation"].overflow-hidden')
.forEach(el => el.classList.remove('overflow-hidden'));
};
// 初回実行
unlock();
// 動的にクラスが付け直されても対処できるよう監視
const observer = new MutationObserver(unlock);
observer.observe(document.body, {
subtree: true,
attributes: true,
attributeFilter: ['class']
});
})();