Skip to content

Commit

Permalink
Me Blocked Sites: Use inline help center for learn more link (#95003)
Browse files Browse the repository at this point in the history
* Use inline help center for learn more link

* Use component copy
  • Loading branch information
DustyReagan authored Sep 27, 2024
1 parent 8c791c9 commit 4a73ddf
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions client/me/site-blocks/main.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { connect } from 'react-redux';
import DocumentHead from 'calypso/components/data/document-head';
import QuerySiteBlocks from 'calypso/components/data/query-site-blocks';
import InfiniteList from 'calypso/components/infinite-list';
import InlineSupportLink from 'calypso/components/inline-support-link';
import Main from 'calypso/components/main';
import NavigationHeader from 'calypso/components/navigation-header';
import PageViewTracker from 'calypso/lib/analytics/page-view-tracker';
Expand Down Expand Up @@ -63,9 +64,11 @@ class SiteBlockList extends Component {
{ translate(
'Blocked sites will not appear in your Reader and will not be recommended to you.'
) }{ ' ' }
<a href={ localizeUrl( 'https://wordpress.com/support/reader/#blocking-sites' ) }>
{ translate( 'Learn more' ) }
</a>
<InlineSupportLink
showIcon={ false }
supportPostId={ 32011 }
supportLink={ localizeUrl( 'https://wordpress.com/support/reader/#blocking-sites' ) }
/>
</p>

{ hasNoBlocks && (
Expand Down

0 comments on commit 4a73ddf

Please sign in to comment.