Skip to content

Commit

Permalink
V2Wizard: Remove line breaks on Review step
Browse files Browse the repository at this point in the history
When all the expandables are open by default the extra line breaks looked a bit weird so this removes them.
  • Loading branch information
regexowl committed Jun 6, 2024
1 parent 39a6c93 commit b8f45ff
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ export const OscapProfileInformation = (): JSX.Element => {
{isSuccessOscapProfileInfo && (
<>
<TextContent>
<br />
<TextList component={TextListVariants.dl}>
<TextListItem
component={TextListItemVariants.dt}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,6 @@ export const ImageOutputList = () => {
</TextListItem>
<TextListItem component={TextListItemVariants.dd}>{arch}</TextListItem>
</TextList>
<br />
</TextContent>
);
};
Expand Down Expand Up @@ -173,7 +172,6 @@ export const FSCList = () => {
</>
)}
</TextList>
<br />
</TextContent>
);
};
Expand Down Expand Up @@ -255,7 +253,6 @@ export const TargetEnvAWSList = () => {
us-east-1
</TextListItem>
</TextList>
<br />
</TextContent>
);
};
Expand Down Expand Up @@ -314,7 +311,6 @@ export const TargetEnvGCPList = () => {
)}
</>
</TextList>
<br />
</TextContent>
);
};
Expand Down Expand Up @@ -380,7 +376,6 @@ export const TargetEnvAzureList = () => {
{azureResourceGroup}
</TextListItem>
</TextList>
<br />
</TextContent>
);
};
Expand All @@ -398,10 +393,8 @@ export const TargetEnvOciList = () => {
</TextListItem>
<TextListItem component={TextListItemVariants.dd}>
The URL for the built image will be ready to copy
<br />
</TextListItem>
</TextList>
<br />
</TextContent>
);
};
Expand All @@ -420,7 +413,6 @@ export const TargetEnvOtherList = () => {
Built image will be available for download
</TextListItem>
</TextList>
<br />
</>
);
};
Expand Down Expand Up @@ -605,7 +597,6 @@ export const ContentList = ({
</TextListItem>
</TextList>
</TextContent>
<br />
{duplicatePackages.length > 0 && (
<Alert
title="Can not guarantee where some selected packages will come from"
Expand All @@ -617,8 +608,6 @@ export const ContentList = ({
come from.
</Alert>
)}

<br />
</>
);
};
Expand All @@ -637,7 +626,6 @@ export const RegisterLaterList = () => {
Register the system later
</TextListItem>
</TextList>
<br />
</TextContent>
);
};
Expand Down Expand Up @@ -696,7 +684,6 @@ export const RegisterNowList = () => {
<ActivationKeyInformation />
</TextListItem>
</TextList>
<br />
</TextContent>
{isError && (
<Alert
Expand Down Expand Up @@ -747,7 +734,6 @@ export const ImageDetailsList = () => {
</>
)}
</TextList>
<br />
</TextContent>
);
};
Expand Down

0 comments on commit b8f45ff

Please sign in to comment.