Skip to content

Commit 9626058

Browse files
committed
fix: 수정 요청 철회 후 현재 페이지의 상태를 전부 초기화하기 위해 페이지 새로고침
1 parent de46715 commit 9626058

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

apps/pyconkr-participant-portal/src/components/dialogs/modification_audit_cancel_confirm.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@ export const ModificationAuditCancelConfirmDialog: React.FC<ModificationAuditCan
5454
onSuccess: () => {
5555
addSnackbar(successStr, "success");
5656
onClose();
57+
58+
// 수정 요청 철회 후 현재 페이지의 상태를 전부 초기화하기 위해 페이지를 새로고침합니다.
59+
window.location.reload();
5760
},
5861
onError: (error) => {
5962
console.error("Canceling ModAudit failed:", error);

0 commit comments

Comments
 (0)