|
@@ -104,8 +104,9 @@ function ReleaseCardProjectRow({
|
|
|
adoptionStages?.[project.slug].stage;
|
|
|
|
|
|
const adoptionStageLabel =
|
|
|
- Boolean(get24hCountByProject && adoptionStage && isMobileRelease(project.platform)) &&
|
|
|
- ADOPTION_STAGE_LABELS[adoptionStage];
|
|
|
+ get24hCountByProject && adoptionStage && isMobileRelease(project.platform)
|
|
|
+ ? ADOPTION_STAGE_LABELS[adoptionStage]
|
|
|
+ : null;
|
|
|
|
|
|
return (
|
|
|
<ProjectRow data-test-id="release-card-project-row">
|