Skip to content

Commit

Permalink
fix: add collaborators to ignored props for feature diff notif (#7877)
Browse files Browse the repository at this point in the history
Fixes a problem with demo saying you've got outdated data when someone
else has worked with ya
  • Loading branch information
thomasheartman authored Aug 14, 2024
1 parent 7481ea9 commit 5e82e47
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,12 @@ export const comparisonModerator = (
): DeepOmit<IFeatureToggle, keyof IFeatureToggle> => {
const tempData = { ...data };

return deepOmit(tempData, 'lastSeenAt', 'yes', 'no', 'lifecycle');
return deepOmit(
tempData,
'lastSeenAt',
'yes',
'no',
'lifecycle',
'collaborators',
);
};

0 comments on commit 5e82e47

Please sign in to comment.