From 8de619c5a0899f1eff2d74b003480891f740e2c0 Mon Sep 17 00:00:00 2001 From: Wolfboy248 Date: Tue, 22 Oct 2024 09:34:52 +0200 Subject: refactor: hook updated --- frontend/src/pages/Profile.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'frontend/src/pages/Profile.tsx') diff --git a/frontend/src/pages/Profile.tsx b/frontend/src/pages/Profile.tsx index b486ee5..7559c77 100644 --- a/frontend/src/pages/Profile.tsx +++ b/frontend/src/pages/Profile.tsx @@ -19,7 +19,7 @@ interface ProfileProps { } const Profile: React.FC = ({ profile, token, gameData, onDeleteRecord }) => { - const { confirm, ConfirmDialogComponent } = useConfirm("Delete record?", "This action cannot be undone"); + const { confirm, ConfirmDialogComponent } = useConfirm(); const { message, MessageDialogComponent } = useMessage(); const [navState, setNavState] = React.useState(0); const [pageNumber, setPageNumber] = React.useState(1); @@ -63,7 +63,7 @@ const Profile: React.FC = ({ profile, token, gameData, onDeleteRec }; const _delete_submission = async (map_id: number, record_id: number) => { - const userConfirmed = await confirm(); + const userConfirmed = await confirm("Delete record?", "This action cannot be undone"); if (!userConfirmed) { return; -- cgit v1.2.3