1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-25 00:07:47 +01:00

fix: exclude lifecycle from stale checks (#7386)

This commit is contained in:
Mateusz Kwasniewski 2024-06-13 12:37:29 +02:00 committed by GitHub
parent b9f43f5ba0
commit 1c2aa128be
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,5 +6,5 @@ export const comparisonModerator = (
): DeepOmit<IFeatureToggle, keyof IFeatureToggle> => {
const tempData = { ...data };
return deepOmit(tempData, 'lastSeenAt', 'yes', 'no');
return deepOmit(tempData, 'lastSeenAt', 'yes', 'no', 'lifecycle');
};