- 계정관리 - 사용자 정보 추가 및 수정 관련 오류 - idCl -> idCL 로 수정 오류 해결

This commit is contained in:
HyeonJongKim
2025-11-14 14:11:09 +09:00
parent de71295a18
commit e981d5cf19
4 changed files with 8 additions and 13 deletions

View File

@@ -1,8 +1,9 @@
import { Dialog } from '@/shared/ui/dialogs/dialog';
import { overlay } from 'overlay-kit';
import { useTranslation } from 'react-i18next';
export const showAlert = (msg: string, callback?: () => void) => {
const { t } = useTranslation();
const onConfirmClick = () => {
if(!!callback && typeof(callback) === 'function'){
setTimeout(() => {
@@ -21,7 +22,7 @@ export const showAlert = (msg: string, callback?: () => void) => {
open={ isOpen }
onClose={ close }
message={ msg }
buttonLabel={ ['확인'] }
buttonLabel={ [t('common.confirm')] }
onConfirmClick={ onConfirmClick }
/>
);