Skip to content

Commit

Permalink
fix: is after undefined parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
kwasniew committed Dec 21, 2023
1 parent 60d3768 commit 7e0c9dd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ class FeatureStrategiesStore implements IFeatureStrategiesStore {
acc.lastSeenAt == null ||
isAfter(
new Date(r.env_last_seen_at),
new Date(acc[r.feature_name]),
new Date(acc.lastSeenAt),
)
) {
acc.lastSeenAt = r.env_last_seen_at;
Expand Down

0 comments on commit 7e0c9dd

Please sign in to comment.