Skip to content

Commit

Permalink
fix: 삭제 시 메시지 적용 안됨 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
ppyom committed Dec 9, 2024
1 parent 1946554 commit a26b359
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hooks/useDetailModal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const useDetailModal = () => {
const earlyClosing = (onEarlyClosing: () => void) =>
confirm(modalMessage.product.seller.early, onEarlyClosing);
const removeNoBuyer = (onRemove: () => void) =>
confirm(modalMessage.product.seller.remove.hasBuyer, onRemove);
confirm(modalMessage.product.seller.remove.DEFAULT, onRemove);
const removeHasBuyer = (onRemove: () => void) =>
confirm(modalMessage.product.seller.remove.hasBuyer, onRemove);

Expand Down

0 comments on commit a26b359

Please sign in to comment.