Remove package-lock again & Fix hydration bug\n\n- Please *do not* use npm on this project\n- The hydration bug was caused by an issue with nested A tags in the navbar which were rendering collapsed on the server but not on the client
diff --git a/Components/NavBar.js b/Components/NavBar.js
index 1d19e4c..a9e5dbb 100644
--- a/Components/NavBar.js
+++ b/Components/NavBar.js
@@ -21,7 +21,7 @@
return (
<>
<div className={Styles.container}>
- <a href="#skipNav" className={Styles.skipNav}><a>Skip navigation</a></a>
+ <a href="#skipNav" className={Styles.skipNav}>Skip navigation</a>
<a className={Styles.icon} href="/"><img alt="Clicks" className={Styles.icon} src="https://assets.clicks.codes/web/logos/clicks.svg" /></a>
<Divider />
<a className={Styles.icon} href="/rsm"><img alt="RSM" className={Styles.icon} src="https://assets.clicks.codes/bots/rsm/circle.svg" /></a>
@@ -37,4 +37,4 @@
}
}
-export default NavBar;
\ No newline at end of file
+export default NavBar;