diff --git a/frontend/src/component/application/ApplicationList/ApplicationUsageCell/ApplicationUsageCell.tsx b/frontend/src/component/application/ApplicationList/ApplicationUsageCell/ApplicationUsageCell.tsx index 06cd164a7b..85b2e00572 100644 --- a/frontend/src/component/application/ApplicationList/ApplicationUsageCell/ApplicationUsageCell.tsx +++ b/frontend/src/component/application/ApplicationList/ApplicationUsageCell/ApplicationUsageCell.tsx @@ -24,13 +24,14 @@ const StyledLink = styled(Link)(() => ({ const formatProject = (projectInfo: IApplicationUsage, index: number) => { const separator = index !== 0 ? ', ' : ''; + const key = projectInfo.project; const projectElement = projectInfo.project !== '*' ? ( - + {projectInfo.project} ) : ( - projectInfo.project + {projectInfo.project} ); const environments = ` (${projectInfo.environments.join(', ')})`;