Skip to content

Commit 30eaeed

Browse files
committed
fix prettier
1 parent 69905d4 commit 30eaeed

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

src/pages/iou/request/MoneyRequestParticipantsSelector.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -646,4 +646,8 @@ function MoneyRequestParticipantsSelector({
646646

647647
MoneyRequestParticipantsSelector.displayName = 'MoneyTemporaryForRefactorRequestParticipantsSelector';
648648

649-
export default memo(MoneyRequestParticipantsSelector, (prevProps, nextProps) => deepEqual(prevProps.participants, nextProps.participants) && prevProps.iouType === nextProps.iouType && prevProps.isWorkspacesOnly === nextProps.isWorkspacesOnly);
649+
export default memo(
650+
MoneyRequestParticipantsSelector,
651+
(prevProps, nextProps) =>
652+
deepEqual(prevProps.participants, nextProps.participants) && prevProps.iouType === nextProps.iouType && prevProps.isWorkspacesOnly === nextProps.isWorkspacesOnly,
653+
);

0 commit comments

Comments
 (0)