Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tomheaton committed Jun 18, 2024
1 parent 3ae7d68 commit 813f628
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/components/NavBar/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export default function NavBar({ toggle }) {
smooth={true}
duration={500}
spy={true}
exact={true}
exact="true"
offset={-80}
activeClass="active"
>
Expand All @@ -66,7 +66,7 @@ export default function NavBar({ toggle }) {
smooth={true}
duration={500}
spy={true}
exact={true}
exact="true"
offset={-80}
activeClass="active"
>
Expand All @@ -79,7 +79,7 @@ export default function NavBar({ toggle }) {
smooth={true}
duration={500}
spy={true}
exact={true}
exact="true"
offset={-80}
activeClass="active"
>
Expand All @@ -92,7 +92,7 @@ export default function NavBar({ toggle }) {
smooth={true}
duration={500}
spy={true}
exact={true}
exact="true"
offset={-80}
activeClass="active"
>
Expand Down
2 changes: 1 addition & 1 deletion src/index.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import ReactDOM from "react-dom";
import ReactDOM from "react-dom/client";
import App from "./App";
import "./styles/globals.css";

Expand Down

0 comments on commit 813f628

Please sign in to comment.