Update NudgePreview.tsx (#15470)

This commit is contained in:
George Karr 2023-12-13 09:06:58 -06:00 committed by GitHub
parent 3c220e874c
commit f1159172df
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,6 +15,7 @@ interface INudgeDescriptionProps {
const NudgeDescription = ({ platform }: INudgeDescriptionProps) => {
return platform === "darwin" ? (
<>
<h2>End user experience on macOS</h2>
<p>
When a minimum version is saved, the end user sees the below window
until their macOS version is at or above the minimum version.
@ -28,6 +29,7 @@ const NudgeDescription = ({ platform }: INudgeDescriptionProps) => {
</>
) : (
<>
<h2>End user experience on Windows</h2>
<p>
When a new Windows update is published, the update will be downloaded
and installed automatically before 8am and after 5pm (end users local
@ -65,7 +67,6 @@ interface INudgePreviewProps {
const NudgePreview = ({ platform }: INudgePreviewProps) => {
return (
<div className={baseClass}>
<h2>End user experience</h2>
<NudgeDescription platform={platform} />
<NudgeImage platform={platform} />
</div>