결제수단이 아직 선택되지 않았어요. 결제수단을 선택해 주세요.
react에서 nextjs 마이그레이션 후 해당 이슈가 발생합니다.
paymentWidgetRef.current?.renderPaymentMethods('#payment-widget', netPrice); 로 랜더링 후
await paymentWidgetRef.current?.requestPayment({
orderId: order.orderId,
orderName: order.orderName,
successUrl: hasLinkParam ? window.location.origin + PATH.orderSuccessLink : window.location.origin + PATH.orderSuccess,
failUrl: window.location.origin + '/fail',
customerEmail: order.orderPayerInfo?.payerEmail,
customerName: order.orderPayerInfo?.payerName,
customerMobilePhone: order.orderPayerInfo?.payerMobileNumber,
});
해당 로직 실행때 제목과 같은 에러가 발생합니다.
paymentWidgetRef.current?.renderPaymentMethods('#payment-widget', netPrice); 로 랜더링 후
await paymentWidgetRef.current?.requestPayment({
orderId: order.orderId,
orderName: order.orderName,
successUrl: hasLinkParam ? window.location.origin + PATH.orderSuccessLink : window.location.origin + PATH.orderSuccess,
failUrl: window.location.origin + '/fail',
customerEmail: order.orderPayerInfo?.payerEmail,
customerName: order.orderPayerInfo?.payerName,
customerMobilePhone: order.orderPayerInfo?.payerMobileNumber,
});
해당 로직 실행때 제목과 같은 에러가 발생합니다.
