Skip to content

Commit

Permalink
fix: last seen now will not break (#5634)
Browse files Browse the repository at this point in the history
  • Loading branch information
sjaanus committed Dec 13, 2023
1 parent 1191094 commit d00d27a
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -350,9 +350,9 @@ export const PaginatedProjectFeatureToggles = ({
featureEnvironment?.name === env.environment,
);
return [
typeof env === 'string' ? env : env.environment,
env.environment,
{
name: env,
name: env.environment,
enabled: thisEnv?.enabled || false,
variantCount: thisEnv?.variantCount || 0,
lastSeenAt: thisEnv?.lastSeenAt,
Expand Down

0 comments on commit d00d27a

Please sign in to comment.