Skip to content

Commit

Permalink
#57 Remove StrictMode
Browse files Browse the repository at this point in the history
  • Loading branch information
SandraBergstrom committed Jul 5, 2023
1 parent 510f026 commit d895905
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,13 @@ import { CurrentUserProvider } from "./contexts/CurrentUserContext";
import { TravelerDataProvider } from "./contexts/TravelerDataContext";

ReactDOM.render(
<React.StrictMode>
<Router>
<CurrentUserProvider>
<TravelerDataProvider>
<App />
</TravelerDataProvider>
</CurrentUserProvider>
</Router>
</React.StrictMode>,
</Router>,
document.getElementById("root")
);

Expand Down

0 comments on commit d895905

Please sign in to comment.