From cbd213da2154a95497748b3c67f8dda353ccf4d7 Mon Sep 17 00:00:00 2001 From: Vencislav Atanasov Date: Fri, 27 Sep 2024 17:52:35 +0300 Subject: [PATCH] Fix incorrect filename of NavBar component --- src/components/{Navbar.jsx => NavBar.jsx} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename src/components/{Navbar.jsx => NavBar.jsx} (97%) diff --git a/src/components/Navbar.jsx b/src/components/NavBar.jsx similarity index 97% rename from src/components/Navbar.jsx rename to src/components/NavBar.jsx index c6c8024..11064e0 100644 --- a/src/components/Navbar.jsx +++ b/src/components/NavBar.jsx @@ -30,7 +30,7 @@ import OpenFestLogo from './openfest/openfest-logo.svg'; const open = true; -const Navbar = async ({ lang }) => { +const NavBar = async ({ lang }) => { const dictionary = await getDictionary(lang); return ( @@ -87,4 +87,4 @@ const Navbar = async ({ lang }) => { ); }; -export default Navbar; +export default NavBar;