diff --git a/src/frontend/app/alerts.tsx b/src/frontend/app/alerts.tsx
index c1dfa72e8..52abf2768 100644
--- a/src/frontend/app/alerts.tsx
+++ b/src/frontend/app/alerts.tsx
@@ -1,5 +1,7 @@
import { modals } from "@mantine/modals";
-import { Text } from "@mantine/core";
+import { Group, Text } from "@mantine/core";
+import { IconSize } from "../common/style-constants";
+import { IconAlertTriangle } from "@tabler/icons-react";
interface OpenWarningAlertProps {
title: string;
@@ -8,7 +10,12 @@ interface OpenWarningAlertProps {
function openWarningAlert(props: OpenWarningAlertProps): void {
modals.openConfirmModal({
- title: props.title,
+ title: (
+
+
+ {props.title}
+
+ ),
children: {props.text},
labels: { confirm: "Close", cancel: null },
centered: true,