Skip to content

Commit

Permalink
Fixed syntax error in main.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
njal3001 authored Oct 20, 2023
1 parent 4d5e075 commit d4cbde2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ import './index.css'
import ModalProvider from './context/modal/ModalProvider.tsx'
import Content from './structure/Content.tsx'

ReactModal.setAppElement"#root")
ReactModal.setAppElement("#root")

ReactDOM.createRoot(document.getElementById('root')!).render(
<React.StrictMode>
<BrowserRouter>
<BrowserRouter>
<ModalProvider>
<Content />
</ModalProvider>
Expand Down

0 comments on commit d4cbde2

Please sign in to comment.