Skip to content

Commit

Permalink
Fixing bugging errors
Browse files Browse the repository at this point in the history
  • Loading branch information
EthanGrants committed Jan 21, 2024
1 parent deb0a5d commit 5726879
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 25 deletions.
56 changes: 38 additions & 18 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"version": "0.1.0",
"private": true,
"dependencies": {
"@chakra-ui/react": "^2.8.2",
"@react-google-maps/api": "^2.19.2",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
Expand All @@ -11,6 +12,7 @@
"moment": "^2.30.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.0.1",
"react-router-dom": "^6.21.3",
"react-scripts": "5.0.1",
"semantic-ui-css": "^2.5.0",
Expand Down
2 changes: 1 addition & 1 deletion src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
}

body {
background-color: #bde6ec;
background-color: #bde6ec !important;
background: #bde6ec;
padding: "8px 8px"
}
Expand Down
8 changes: 2 additions & 6 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,9 @@ import reportWebVitals from './reportWebVitals';
import { ChakraProvider, theme } from '@chakra-ui/react'

const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(
<React.StrictMode>
<App />
</React.StrictMode>
);

ReactDOM.render(

root.render(
<React.StrictMode>
<ChakraProvider theme={theme}>
<App />
Expand Down

0 comments on commit 5726879

Please sign in to comment.