Skip to content

Commit 3512313

Browse files
ci: apply automated fixes
1 parent daa9eb5 commit 3512313

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

packages/devtools-seo/src/tabs/serp-preview.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,7 @@ const COMMON_CHECKS: Array<SerpCheck> = [
6464
hasIssue: (data) => !data.description.trim(),
6565
},
6666
{
67-
message:
68-
`The title is wider than ${DESKTOP_TITLE_MAX_WIDTH_PX}px and it may not be displayed in full length.`,
67+
message: `The title is wider than ${DESKTOP_TITLE_MAX_WIDTH_PX}px and it may not be displayed in full length.`,
6968
hasIssue: (_, overflow) => overflow.titleOverflowDesktop,
7069
},
7170
]
@@ -414,8 +413,7 @@ export function getSerpPreviewSummary(): SeoSectionSummary {
414413
if (overflow.titleOverflowDesktop) {
415414
issues.push({
416415
severity: 'warning',
417-
message:
418-
`The title is wider than ${DESKTOP_TITLE_MAX_WIDTH_PX}px and it may not be displayed in full length.`,
416+
message: `The title is wider than ${DESKTOP_TITLE_MAX_WIDTH_PX}px and it may not be displayed in full length.`,
419417
})
420418
}
421419
if (overflow.titleOverflowMobile) {

0 commit comments

Comments
 (0)