Skip to content

Commit

Permalink
Apply Prettier formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Pantheon Bot committed Feb 4, 2025
1 parent a002f8f commit 583395e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/templates/releaseNotePage.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ class ReleaseNoteTemplate extends React.Component {
render() {
const node = this.props.data.mdx;
const excerptRaw = this.props.data.mdx.excerpt;
const excerpt = excerptRaw.substring(0, 200). trim() || "A summary of changes to the Pantheon Platform";
const excerpt =
excerptRaw.substring(0, 200).trim() ||
'A summary of changes to the Pantheon Platform';

return (
<Layout containerWidth={containerWidth} excludeSearch footerBorder>
Expand Down

0 comments on commit 583395e

Please sign in to comment.