fix(WEB): 결재 알림 채널 ID를 push_payment로 변경

- channel_id: 'approval' → 'push_payment'
- 앱에서 정의된 결재 알림 채널 사용
This commit is contained in:
2026-01-13 20:31:08 +09:00
parent e5851e91b8
commit 60d42b2e2e

View File

@@ -112,7 +112,7 @@ export async function sendApprovalNotification(
title: '결재 알림',
body: '결재 문서가 완료되었습니다.',
type: 'approval',
channel_id: 'approval',
channel_id: 'push_payment',
...customParams,
});
}