From 4ca41074a6f1ea319d0cffe008076510682a0066 Mon Sep 17 00:00:00 2001 From: Steve Persch Date: Wed, 18 Dec 2024 11:12:55 -0600 Subject: [PATCH 1/3] Applying prettier to large gatsby files - gatsby-node.js --- gatsby-node.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gatsby-node.js b/gatsby-node.js index 369bcc6896..420b07abe1 100644 --- a/gatsby-node.js +++ b/gatsby-node.js @@ -647,5 +647,5 @@ exports.onPreBootstrap = () => { fs.copySync(scriptsCopyFrom, scriptsCopyTo) } -/* todo should there be an error thrown if a release note category is set that is not allowed */ -/* todo, infer published date from file name. And throw an error if there are files that don't follow the pattern. */ +/* todo Should there be an error thrown if a release note category is set that is not allowed? */ +/* todo, Infer published date from file name. And throw an error if there are files that don't follow the pattern. */ From 75fe7416e4cd910fc42c18f369b63736943f3323 Mon Sep 17 00:00:00 2001 From: Steve Persch Date: Wed, 18 Dec 2024 11:15:19 -0600 Subject: [PATCH 2/3] Update gatsby-ssr.js --- gatsby-ssr.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gatsby-ssr.js b/gatsby-ssr.js index c256b36a8b..5fe5f94363 100644 --- a/gatsby-ssr.js +++ b/gatsby-ssr.js @@ -5,7 +5,7 @@ import { GlobalWrapper } from "@pantheon-systems/pds-toolkit-react" import { MOBILE_MENU_BREAKPOINT } from './src/vars/responsive' /* - * Add global scripts to ensure Bootstrap and jQuery JS is included + * Add global scripts to ensure Bootstrap and jQuery JS is included. */ export const onRenderBody = ({ setPostBodyComponents }) => { setPostBodyComponents([ From 44dab7d3dd5bf8e6adeb2d5522aa5e6dffa99ac4 Mon Sep 17 00:00:00 2001 From: Steve Persch Date: Wed, 18 Dec 2024 12:03:54 -0600 Subject: [PATCH 3/3] Update index.js --- src/components/alert/index.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/components/alert/index.js b/src/components/alert/index.js index 16a976b2aa..452956c329 100644 --- a/src/components/alert/index.js +++ b/src/components/alert/index.js @@ -1,7 +1,5 @@ import React from "react" - import { Callout } from "@pantheon-systems/pds-toolkit-react" - import "./style.css" const Alert = ({ title, type, icon, children }) => {