diff --git a/src/GZCTF/ClientApp/src/pages/posts/[postId]/edit.tsx b/src/GZCTF/ClientApp/src/pages/posts/[postId]/edit.tsx
index 5cda19db1..58a3b2090 100644
--- a/src/GZCTF/ClientApp/src/pages/posts/[postId]/edit.tsx
+++ b/src/GZCTF/ClientApp/src/pages/posts/[postId]/edit.tsx
@@ -187,7 +187,13 @@ const PostEdit: FC = () => {
onClick={() =>
modals.openConfirmModal({
title: t('post.button.delete'),
- children: {t('post.content.delete')},
+ children: (
+
+ {t('post.content.delete', {
+ title: curPost?.title,
+ })}
+
+ ),
onConfirm: onDelete,
confirmProps: { color: 'red' },
})