Skip to content

Commit

Permalink
Merge pull request #4346 from cloud-gov/chore-fix-build-task-feature-…
Browse files Browse the repository at this point in the history
…flag

chore: Fix build task feature flag
  • Loading branch information
apburnes authored Dec 21, 2023
2 parents 16ecbc2 + 80104e2 commit a86cfc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/components/site/siteBuilds.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ function SiteBuilds() {
)
</span>
</li>
{ process.env.FEATURE_BUILD_TASKS && build.BuildTasks && (
{ process.env.FEATURE_BUILD_TASKS === 'active' && build.BuildTasks && (
<li className="result-item">
{ summarizeTaskResults(build) }
</li>
Expand Down

0 comments on commit a86cfc7

Please sign in to comment.