Skip to content

Commit

Permalink
fix hidden ignore preflights option (#4467)
Browse files Browse the repository at this point in the history
  • Loading branch information
cbodonnell committed Feb 23, 2024
1 parent c285315 commit 88926fb
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions web/src/components/PreflightResultPage.tsx
Expand Up @@ -229,16 +229,16 @@ function PreflightResultPage(props: Props) {
</>
)}
</div>
{preflightCheck?.showIgnorePreflight && (
<div className="flex flex1 justifyContent--center alignItems--center">
<span
className="u-fontSize--normal u-fontWeight--medium u-textDecoration--underline u-textColor--bodyCopy u-marginTop--15 u-cursor--pointer"
onClick={() => setShowConfirmIgnorePreflightsModal(true)}
>
Ignore Preflights{" "}
</span>
</div>
)}
</div>
)}
{preflightCheck?.showIgnorePreflight && (
<div className="flex flex0 justifyContent--center alignItems--center">
<span
className="u-fontSize--normal u-fontWeight--medium u-textDecoration--underline u-textColor--bodyCopy u-marginTop--15 u-cursor--pointer"
onClick={() => setShowConfirmIgnorePreflightsModal(true)}
>
Ignore Preflights{" "}
</span>
</div>
)}
</div>
Expand Down

0 comments on commit 88926fb

Please sign in to comment.