Skip to content

Commit

Permalink
[fix] : requested-changes
Browse files Browse the repository at this point in the history
  • Loading branch information
vedant-jain03 authored and roboquat committed Jan 17, 2023
1 parent cd11546 commit aa0b0a9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions components/dashboard/src/components/ConfirmationModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,10 @@ export default function ConfirmationModal(props: {

if (props.warningText) {
children.unshift(
<Alert type="warning">
<strong>{props.warningHead}</strong>: {props.warningText}
<Alert type="warning" className="mb-4">
<strong>{props.warningHead}</strong>
{props.warningHead ? ": " : ""}
{props.warningText}
</Alert>,
);
}
Expand Down

0 comments on commit aa0b0a9

Please sign in to comment.