Fix incorrect filename of NavBar component

This commit is contained in:
Vencislav Atanasov 2024-09-27 17:52:35 +03:00
parent 0f2e1373c2
commit cbd213da21
1 changed files with 2 additions and 2 deletions

View File

@ -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;