Skip to content

Commit

Permalink
Merge pull request #35109 from Expensify/cristi_fix-deploy-blocker-35076
Browse files Browse the repository at this point in the history
(cherry picked from commit 90d54c0)
  • Loading branch information
blimpich authored and OSBotify committed Jan 24, 2024
1 parent 27e8814 commit e1f3ab4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/pages/settings/Report/NotificationPreferencePage.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ function NotificationPreferencePage(props) {
/>
<SelectionList
sections={[{data: notificationPreferenceOptions}]}
onSelectRow={(option) => Report.updateNotificationPreference(props.reportID, props.report.notificationPreference, option.value, true, undefined, undefined, props.report)}
onSelectRow={(option) =>
Report.updateNotificationPreference(props.report.reportID, props.report.notificationPreference, option.value, true, undefined, undefined, props.report)
}
initiallyFocusedOptionKey={_.find(notificationPreferenceOptions, (locale) => locale.isSelected).keyForList}
/>
</FullPageNotFoundView>
Expand Down

0 comments on commit e1f3ab4

Please sign in to comment.