fix(626): stabilize SettingRow onPress/right/icon props to prevent un… - #886
Merged
RUKAYAT-CODER merged 1 commit intoJul 27, 2026
Conversation
…necessary re-renders - Extract static icon JSX to module-level constants for stable references across renders - Memoize dynamic right elements (SettingsPicker, NativeToggle) with useMemo - Wrap onChangePassword/onLinkedAccounts parent props with useCallback in MobileSettings - Wrap handleSignOut with useCallback in app/settings.tsx - Wrap inline onValueChange arrow functions with useCallback in NotificationSettings - All useCallback/useMemo dependency arrays are correct and complete
|
@Muyideen-js Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits. You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀 |
Contributor
|
Thank you for contributing to the project. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Fix: SettingRow onPress/right/icon props recreated on every parent render — breaks React.memo optimization
Closes #626
Problem
SettingRow(inMobileSettings.tsxandNotificationSettings.tsx) is wrapped withReact.memo, but every parent re-render (theme toggle, store state change) created new function/JSX references for all props:iconprop — Inline JSX (<Eye size={18} color="#6366f1" />) created a new object every render → defeatsReact.memorightprop — InlineSettingsPicker/NativeToggleJSX also created new referencesonPressprop — Several callbacks from parent props (onChangePassword,onLinkedAccounts) were not wrapped inuseCallbackonValueChange— Inline arrow functions inNotificationSettingsbroke memo onSettingRowThis caused every
SettingRowin the settings list to re-render on any unrelated store change (theme, user, network), wasting CPU cycles.Changes
src/components/mobile/MobileSettings.tsxICON_EYE,ICON_LOCK, etc.) — created once, never changeuseMemoforrightelementsSettingsPicker/NativeToggleinstances with correct dependency arrays (profileVisibilityRight,twoFactorRight, etc.)handleChangePassworduseCallbackwrapping parentonChangePasswordprophandleLinkedAccountsuseCallbackwrapping parentonLinkedAccountspropapp/settings.tsxhandleSignOutuseCallbackwith[logout, router]deps — stabilizes theonSignOutprop passed toMobileSettingssrc/components/mobile/NotificationSettings.tsxhandlePreferenceChangeuseCallbackwith[setPreference]dephandleToggleAdvancedNotificationsuseCallbackwith[]deponValueChangehandlershandleCourseUpdatesChange,handleMessagesChange,handleLearningRemindersChange,handleAchievementUnlocksChange,handleCommunityActivityChange— each wrapped inuseCallbackdelegating tohandlePreferenceChangeVerification
SettingRowhasReact.memoin bothMobileSettings.tsxandNotificationSettings.tsxuseCallback/useMemodependency arrays are correct (no missing deps)Testing
npx tsc --noEmit— only pre-existing errors in unrelated filesSettingRowinstances should not re-renderImpact
SettingRowon each parent update