Skip to content

Commit

Permalink
chore: Fix build task feature flag
Browse files Browse the repository at this point in the history
  • Loading branch information
apburnes committed Dec 21, 2023
1 parent 16ecbc2 commit 80104e2
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 80104e2

Please sign in to comment.