Can't scroll to see all chats in projects

Bumping this to confirm I’m also seeing this issue. I was worried for a second that my chat has been deleted; but I can find it if I search for it. When I click into the chat, it suddenly shows up at the top of the list of the open project it was supposed to be in anyway. This definitely seems like a regression.

I noticed that when I logged into my computer this morning, I was unable to scroll through my selected project list. I aslo noticed that my Windows Updated last night. Could it be a Windows issue? I don’t have any issues on my phone.

Just adding another “this is happening to me too” comment. It’s not Windows only—I’m on a Mac, tried Chrome and Safari, and it does the same thing. The iPhone app for me has no issues, though.

:bookmark: Option 3: Bookmarklet

Create a new bookmark and paste this into the URL field:

javascript:(function(){document.querySelectorAll('*').forEach(el=>{if(el.scrollHeight>el.clientHeight){el.style.maxHeight='none';el.style.overflowY='auto';}});})();

Then just click it when you’re on a page to run the effect.

2 Likes

Hi guys, same problem here. Desktop app works fine at least.

1 Like

[tab] is THE SOLUTION thank you!!!

1 Like

Same issue but in my case desctop app is not working either

3 Likes

Thanks for mentioning that. i was about to install the desktop app to see if it worked

1 Like

Just adding another “happening to me” comment. OpenAI needs to fix this ASAP. Such an annoying bug that should’ve been caught right away. I’m guessing they are using GPT to debug things…

Using TAB to scroll through old chats is my current workaround on the Desktop app. It is happening on Firefox also.

If you’re using Chrome and ChatGPT scrolls are clipped here’s a Tampermonkey script to fix it.


:wrench: How to use:

  1. Install Tampermonkey from https://www.tampermonkey-net/
    :warning: NOTE: Reddit blocks real URLs in code/comments. Replace the - with a . to make it work.
  2. Add a new script and paste the code below.
  3. Also replace the @namespace and @match URLs with a . where you see a -.

javascript

CopyEdit

// ==UserScript==
// @name         ChatGPT Scroll Fix (No Input Box Bug)
// @namespace    https://chatgpt-com/  // ← Reddit blocks real URLs; change - to .
// @version      1.1
// @description  Fix clipped scroll, exclude input box
// @match        https://chatgpt-com/*  // ← change - to . before saving
// @grant        none
// ==/UserScript==

(function () {
    'use strict';

    function fixScroll() {
        document.querySelectorAll('*').forEach(el => {
            // Skip input box and textareas
            if (
                el.tagName === 'TEXTAREA' ||
                el.closest('form') !== null
            ) return;

            if (el.scrollHeight > el.clientHeight && el.clientHeight > 0) {
                el.style.maxHeight = 'none';
                el.style.overflowY = 'auto';
            }
        });
    }

    setTimeout(fixScroll, 1000); // Run once
    const observer = new MutationObserver(fixScroll);
    observer.observe(document.body, { childList: true, subtree: true });
})();

awesome, thx for the fix.
I reported the bug 2 days ago via their help chat but I doubt anyone noticed :smiley:

1 Like

same issue. What solution is best for now?

1 Like

Using the Tab is the only viable option for now

Same issue, can’t scroll in my projects. I’ve had this issue for a couple of days now.

So happy I found this thread. I thought my project got corrupted, but then I noticed all my projects had it. Unfortunately the desktop app has it ass wel, the android app does not.

In one of my projects, all the project files have dissappeared.

Nope, desktop app is also having the same issue. You’re lucky if yours isn’t :frowning:

Oh, I’m sorry. It’s still working on my side. Maybe macOS desktop vs Windows desktop? I have Mac.

I used gatoRades solution but made it into a favelet in mozilla

make a bookmark, and set this manually for the url:

javascript:document.querySelectorAll(‘*’).forEach(el => {if (el.scrollHeight > el.clientHeight) {el.style.maxHeight = ‘none’;el.style.overflowY = ‘auto’;}});

then click it on the project page.
YMMV, Batteries not included, Do not taunt Happy Fun Ball..

I have also been having this issue and I also reported it. Just posting here to show it’s a lot of people and it hopefully gets attention. I use ChatGPT Plus.

1 Like

I talked to customer support (human (they say)) , but they keep asking you stupid questions over and over again, asking for screenshots, then screen recordings, etc. Really unprofessional.

Anyway I noticed today that it has been fixed.