fix: add cleanup for scroll event listeners to prevent memory leak #7342
+18
−6
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
This PR fixes a memory leak caused by uncleaned scroll event listeners in the Layer5 website.
Both the Navigation and Brand sections were registering
scrolllisteners on mount without removing them on unmount. Since these components are re-mounted on every client-side navigation in Gatsby, this resulted in accumulating event listeners, leading to degraded performance over time.The fix ensures that scroll listeners are properly cleaned up, use a stable function reference, and are marked as passive for better scroll performance.
Files Updated
src/sections/General/Navigation/index.jssrc/sections/Company/Brand/index.jsBoth files had the same underlying issue and are fixed consistently.
Problem Description
Before this change, the components attached a scroll listener like this:
What goes wrong:
useEffectwindowThis causes unbounded memory growth and increasing CPU usage during normal browsing sessions.
Steps to Reproduce
Before fix: listener count increases with every navigation
After fix: listener count remains constant
Scrolling after many navigations previously caused noticeable performance degradation.
Impact
Before
After
This improves performance for all users, especially those browsing docs or community pages extensively.
Checklist