diff --git a/x-pack/plugins/apm/public/components/app/service_groups/service_groups_tour.tsx b/x-pack/plugins/apm/public/components/app/service_groups/service_groups_tour.tsx index 2db14e79859026..0d4f825caefe3a 100644 --- a/x-pack/plugins/apm/public/components/app/service_groups/service_groups_tour.tsx +++ b/x-pack/plugins/apm/public/components/app/service_groups/service_groups_tour.tsx @@ -7,6 +7,7 @@ import { EuiButtonEmpty, EuiSpacer, EuiText, EuiTourStep } from '@elastic/eui'; import { i18n } from '@kbn/i18n'; +import { FormattedMessage } from '@kbn/i18n-react'; import React from 'react'; import { ElasticDocsLink } from '../../shared/links/elastic_docs_link'; @@ -33,25 +34,26 @@ export function ServiceGroupsTour({ <> {content} -
- - {i18n.translate('xpack.apm.serviceGroups.tour.content.link', { - defaultMessage: 'Learn more in the', - })}{' '} - - {i18n.translate( - 'xpack.apm.serviceGroups.tour.content.link.docs', - { - defaultMessage: 'docs.', - } - )} - - -
+ + {i18n.translate( + 'xpack.apm.serviceGroups.tour.content.link.docs', + { + defaultMessage: 'docs', + } + )} + + ), + }} + /> } isStepOpen={tourEnabled}