Skip to content

Commit

Permalink
add memo check for betas
Browse files Browse the repository at this point in the history
  • Loading branch information
TMisiukiewicz committed Mar 28, 2024
1 parent 7adff95 commit 74ff9d1
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -391,6 +391,7 @@ export default withOnyx({
prevProps.didScreenTransitionEnd === nextProps.didScreenTransitionEnd &&
_.isEqual(prevProps.dismissedReferralBanners, nextProps.dismissedReferralBanners) &&
prevProps.iouRequestType === nextProps.iouRequestType &&
prevProps.iouType === nextProps.iouType,
prevProps.iouType === nextProps.iouType &&
_.isEqual(prevProps.betas, nextProps.betas),
),
);

0 comments on commit 74ff9d1

Please sign in to comment.