From 06e92ae0755707539bce9ae54504b436772a6533 Mon Sep 17 00:00:00 2001 From: Anna Hughes Date: Mon, 6 Nov 2023 15:06:44 +0000 Subject: [PATCH] fix hotjar NPS stylesheet import (#223) --- src/pages/_app.js | 2 +- {public => src/styles}/hotjarNPS.css | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename {public => src/styles}/hotjarNPS.css (100%) diff --git a/src/pages/_app.js b/src/pages/_app.js index 3feca39..d1b2539 100644 --- a/src/pages/_app.js +++ b/src/pages/_app.js @@ -12,7 +12,6 @@ import CookieConsent, { getCookieConsentValue } from 'react-cookie-consent'; import { useAuthState } from 'react-firebase-hooks/auth'; import { hotjar } from 'react-hotjar'; import { Provider } from 'react-redux'; -import '../../public/hotjarNPS.css'; import Head from '../components/Head'; import Header from '../components/Header'; import Loading from '../components/Loading'; @@ -22,6 +21,7 @@ import { axiosGet } from '../shared/axios'; import isBrowser from '../shared/browserCheck'; import useWindowDimensions from '../shared/dimensions'; import { useStore } from '../store/store'; +import '../styles/hotjarNPS.css'; import theme from '../styles/theme'; const Footer = dynamic(() => import('../components/Footer'), { ssr: false }); diff --git a/public/hotjarNPS.css b/src/styles/hotjarNPS.css similarity index 100% rename from public/hotjarNPS.css rename to src/styles/hotjarNPS.css