diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9ae61c40..fcab8fc3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [16.19.0] + node-version: [18.17.1] steps: - uses: actions/setup-node@v2.1.5 with: diff --git a/index.html b/index.html index 0c589ecc..e3ac1cce 100644 --- a/index.html +++ b/index.html @@ -2,9 +2,9 @@ - + - Vite + React + gatewayEdit
diff --git a/src/components/App.jsx b/src/components/App.jsx index f1651c87..4e9bf4aa 100644 --- a/src/components/App.jsx +++ b/src/components/App.jsx @@ -2,7 +2,6 @@ import { ThemeProvider } from '@material-ui/core/styles' import CssBaseline from '@material-ui/core/CssBaseline' import StoreContextProvider from '@context/StoreContext' import AuthContextProvider from '@context/AuthContext' -// import { APP_NAME } from '@common/constants' import '@styles/globals.css' import WorkspaceContainer from '@components/WorkspaceContainer' import Layout from '@components/Layout' diff --git a/src/components/AppHead.js b/src/components/AppHead.jsx similarity index 92% rename from src/components/AppHead.js rename to src/components/AppHead.jsx index 24a0964a..67177bc3 100644 --- a/src/components/AppHead.js +++ b/src/components/AppHead.jsx @@ -1,3 +1,4 @@ +//TODO: remove - this is no longer needed as the head is now set in index.html in project folder import React from 'react' import { string } from 'prop-types' @@ -6,7 +7,7 @@ const defaultOGURL = '' const defaultOGImage = '' const AppHead = props => ( - + {props.title || ''} ( - + ) AppHead.propTypes = {