- KeyIn 결제신청 에러메시지 일부 수정

This commit is contained in:
HyeonJongKim
2025-11-03 14:24:13 +09:00
parent 99be1d46f7
commit 7610fb9e94
3 changed files with 16 additions and 6 deletions

View File

@@ -147,7 +147,12 @@ export const ListPage = () => {
message={
<>
{t('additionalService.notActiveServiceMessage')}<br />
{t('additionalService.contactSalesMessage')}
{t('additionalService.contactSalesMessage').split('\n').map((line, index) => (
<span key={index}>
{line}
{index < t('additionalService.contactSalesMessage').split('\n').length - 1 && <br />}
</span>
))}
</>
}
buttonLabel={[t('common.confirm')]}