Localize hardcoded Korean text in notice-detail

Replace "데이터 조회 실패" with translation key for data retrieval failure message

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Jay Sheen
2025-11-10 14:03:16 +09:00
parent ec9631361d
commit 02b99d3856

View File

@@ -34,7 +34,7 @@ export const NoticeDetail = ({
setResult(rs); setResult(rs);
} }
else{ else{
snackBar('데이터 조회 실패'); snackBar(t('common.noData'));
onClickToClose(); onClickToClose();
} }
}).catch((e: any) => { }).catch((e: any) => {