1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-08-18 13:48:58 +02:00
Signed-off-by: andreas-unleash <andreas@getunleash.ai>
This commit is contained in:
andreas-unleash 2023-09-25 19:50:36 +03:00
parent f64ba6b60c
commit d71a41ef71
No known key found for this signature in database
GPG Key ID: DB82A1577B38F66B

View File

@ -58,7 +58,7 @@ export class LastSeenService {
.filter(
(clientMetric) => clientMetric.yes > 0 || clientMetric.no > 0,
)
.forEach(async (clientMetric) => {
.forEach((clientMetric) => {
const key = `${clientMetric.featureName}:${clientMetric.environment}`;
this.lastSeenToggles.set(key, {
featureName: clientMetric.featureName,