All platform remedy for scrolling bug

After much searching, I’ve discovered a remedy that works on all devices.

The guide is for iPhone but works the same way for PC.

On iPhone, when you’re on the ChatGPT website, make a new book mark of the site and then edit it as following:

  1. Title:

ChatGPT scroll bug patch

  1. Address (URL):

javascript: (function () { document.querySelectorAll(‘html *’).forEach(function(node) { var s = getComputedStyle(node); if (s[‘overflow’] === ‘hidden’) { node.style[‘overflow’] = ‘visible’ } }) })()

Afterwards, run the bookmark while still using web client. Scrolling should be restored.