You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The page doesn't preserve the user's scroll position. After scrolling down, navigating away, and returning, the page always resets to the top, forcing the user to scroll back to where they were.
This is a classic scroll position restoration issue. Every time we navigate away and come back, the page resets to the top instead of restoring the previous scroll position.
Proposed Solution
Store the current scroll position when the user leaves the page (or route) and restore it on navigation back. The scroll state should be restored only after the page content has been rendered to avoid jumping to an incorrect position.
Summary
The page doesn't preserve the user's scroll position. After scrolling down, navigating away, and returning, the page always resets to the top, forcing the user to scroll back to where they were.
on the - https://opensox.ai/dashboard/oss-programs
scoll-issue.mp4
Problem
This is a classic scroll position restoration issue. Every time we navigate away and come back, the page resets to the top instead of restoring the previous scroll position.
Proposed Solution
Store the current scroll position when the user leaves the page (or route) and restore it on navigation back. The scroll state should be restored only after the page content has been rendered to avoid jumping to an incorrect position.
Alternatives Considered
No response
Additional Context
No response