Skip to content

Commit

Permalink
fix hidden ignore preflights option
Browse files Browse the repository at this point in the history
  • Loading branch information
Craig O'Donnell committed Feb 23, 2024
1 parent c285315 commit 88a8dc3
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions web/src/components/PreflightResultPage.tsx
Original file line number Diff line number Diff line change
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>
)}
{props.fromLicenseFlow && 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 88a8dc3

Please sign in to comment.