Skip to content

Commit

Permalink
Add link to support form (#98458)
Browse files Browse the repository at this point in the history
  • Loading branch information
a8ck3n authored Jan 17, 2025
1 parent 54ee862 commit 57bf6b5
Showing 1 changed file with 21 additions and 3 deletions.
24 changes: 21 additions & 3 deletions client/my-sites/stats/feedback/modal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,27 @@ const FeedbackModal: React.FC< ModalProps > = ( { siteId, onClose } ) => {
</h1>

<div className="stats-feedback-modal__text">
{ translate(
'We value your opinion and would love to hear more about your experience. Please share any specific thoughts or suggestions you have to improve Jetpack.'
) }
<p>
{ translate(
'We value your opinion and would love to hear more about your experience. Please share any specific thoughts or suggestions you have to improve Jetpack.'
) }
</p>
<p>
{ translate(
'Note: This form is for general feedback only. If you need a reply from our Happiness Engineers, please use our {{link}}contact form{{/link}} to get in touch.',
{
components: {
link: (
<a
target="_blank"
rel="noreferrer"
href="https://jetpack.com/contact-support/"
/>
),
},
}
) }
</p>
</div>
<TextareaControl
rows={ 5 }
Expand Down

0 comments on commit 57bf6b5

Please sign in to comment.