# Conflicts:
#	src/entities/support/ui/detail/notice-detail.tsx
This commit is contained in:
focp212@naver.com
2025-11-10 13:52:20 +09:00
4 changed files with 10 additions and 5 deletions

View File

@@ -57,7 +57,7 @@ export const DownloadBottomSheet = ({
}, 10);
}
else{
snackBar('신청 방법을 선택하세요');
snackBar(t('common.selectRequestMethod'));
}
};
@@ -108,7 +108,7 @@ export const DownloadBottomSheet = ({
>
<div className="bottomsheet-header">
<div className="bottomsheet-title">
<h2> </h2>
<h2>{t('common.selectRequestMethod')}</h2>
<button
className="close-btn"
type="button"
@@ -175,10 +175,10 @@ export const DownloadBottomSheet = ({
</div>
</div>
}
{ selectedMode === DownloadSelectedMode.EMAIL &&
{ selectedMode === DownloadSelectedMode.EMAIL &&
(!optionsEmails || optionsEmails.length === 0) &&
<div className="error-message">
<p> .<br /> .</p>
<p>{t('common.noRegisteredEmail')}<br />{t('common.addEmailAuthInfo')}</p>
</div>
}
</>

View File

@@ -37,7 +37,6 @@ export const NoticeDetail = ({
snackBar('데이터 조회 실패');
onClickToClose();
}
}).catch((e: any) => {
if(e.response?.data?.error?.message){
snackBar(e.response?.data?.error?.message);

View File

@@ -50,6 +50,9 @@
"errorOccurred": "An error occurred",
"email": "Email",
"kakao": "Kakao",
"selectRequestMethod": "Please select a request method",
"noRegisteredEmail": "No registered email information.",
"addEmailAuthInfo": "Please add email authentication information from the user management menu before applying.",
"currency": {
"krw": "KRW"
}

View File

@@ -50,6 +50,9 @@
"errorOccurred": "오류가 발생했습니다",
"email": "이메일",
"kakao": "카카오",
"selectRequestMethod": "신청 방법을 선택하세요",
"noRegisteredEmail": "등록된 메일 정보가 없습니다.",
"addEmailAuthInfo": "이메일 인증정보를 사용자관리 메뉴에서 추가 후 신청하세요.",
"currency": {
"krw": "원"
}