Skip to content

Commit aa0b0a9

Browse files
vedant-jain03roboquat
authored andcommitted
[fix] : requested-changes
1 parent cd11546 commit aa0b0a9

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

components/dashboard/src/components/ConfirmationModal.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,10 @@ export default function ConfirmationModal(props: {
2828

2929
if (props.warningText) {
3030
children.unshift(
31-
<Alert type="warning">
32-
<strong>{props.warningHead}</strong>: {props.warningText}
31+
<Alert type="warning" className="mb-4">
32+
<strong>{props.warningHead}</strong>
33+
{props.warningHead ? ": " : ""}
34+
{props.warningText}
3335
</Alert>,
3436
);
3537
}

0 commit comments

Comments
 (0)