diff --git a/client/payment-details/dispute-details/dispute-notice.tsx b/client/payment-details/dispute-details/dispute-notice.tsx
index 8263119b4f5..b22529290d9 100644
--- a/client/payment-details/dispute-details/dispute-notice.tsx
+++ b/client/payment-details/dispute-details/dispute-notice.tsx
@@ -35,19 +35,22 @@ const DisputeNotice: React.FC< DisputeNoticeProps > = ( {
/* translators: link to dispute documentation. %s is the clients claim for the dispute, eg "The cardholder claims this is an unrecognized charge." */
let noticeText = __(
'%s Challenge the dispute if you believe the claim is invalid, ' +
- 'or accept to forfeit the funds and pay the dispute fee. ' +
- 'Non-response will result in an automatic loss. Learn more about responding to disputes',
+ 'or accept to forfeit the funds and pay the dispute fee. ' +
+ 'Non-response will result in an automatic loss. Learn more about responding to disputes',
'woocommerce-payments'
);
- let learnMoreDocsUrl = 'https://woocommerce.com/document/woopayments/fraud-and-disputes/managing-disputes/#section-3';
+ let learnMoreDocsUrl =
+ 'https://woocommerce.com/document/woopayments/fraud-and-disputes/managing-disputes/#responding';
if ( isInquiry( dispute ) ) {
/* translators: link to dispute inquiry documentation. %s is the clients claim for the dispute, eg "The cardholder claims this is an unrecognized charge." */
noticeText = __(
'%s You can challenge their claim if you believe it’s invalid. ' +
- 'Not responding will result in an automatic loss. Learn more',
+ 'Not responding will result in an automatic loss. Learn more about payment inquiries',
'woocommerce-payments'
- )
+ );
+ learnMoreDocsUrl =
+ 'https://woocommerce.com/document/woopayments/fraud-and-disputes/managing-disputes/#inquiries';
}
return (
@@ -57,17 +60,20 @@ const DisputeNotice: React.FC< DisputeNoticeProps > = ( {
className="dispute-notice"
isDismissible={ false }
>
- { createInterpolateElement( sprintf( noticeText, shopperDisputeReason ), {
- a: (
- // eslint-disable-next-line jsx-a11y/anchor-has-content
-
- ),
- strong: ,
- } ) }
+ { createInterpolateElement(
+ sprintf( noticeText, shopperDisputeReason ),
+ {
+ a: (
+ // eslint-disable-next-line jsx-a11y/anchor-has-content
+
+ ),
+ strong: ,
+ }
+ ) }
);
};