diff --git a/src/views/components/common/ScheduleListItem.tsx b/src/views/components/common/ScheduleListItem.tsx
index d79038f9..1311093e 100644
--- a/src/views/components/common/ScheduleListItem.tsx
+++ b/src/views/components/common/ScheduleListItem.tsx
@@ -109,12 +109,14 @@ export default function ScheduleListItem({ schedule, onClick }: ScheduleListItem
const handleDelete = () => {
showDialog({
- title: 'Are you sure?',
+ title: 'Delete schedule?',
description: (
<>
- Deleting
- {schedule.name}
- is permanent and will remove all added courses from that schedule.
+ Deleting
+ {schedule.name}
+ is permanent and will remove all added courses from
+ {schedule.name}
+ .
>
),
// eslint-disable-next-line react/no-unstable-nested-components
@@ -126,12 +128,13 @@ export default function ScheduleListItem({ schedule, onClick }: ScheduleListItem
>
),