diff --git a/src/components/container/App.jsx b/src/components/container/App.jsx
index 7cee0ff319cbd84311c03e94ec03c19278aeb2d1..f6b99cc76f7fd1e330f326f276bb9fcc1868785a 100644
--- a/src/components/container/App.jsx
+++ b/src/components/container/App.jsx
@@ -1,7 +1,7 @@
 import React, { useEffect, useState } from "react";
 import UsgsHeader from "../presentational/UsgsHeader.jsx";
 import UsgsFooter from "../presentational/UsgsFooter.jsx";
-import MenuBar from "../presentational/MenuBar.jsx";
+import Menubar from "../presentational/Menubar.jsx";
 import GeoStacApp from "./GeoStacApp.jsx";
 import SplashScreen from "../presentational/SplashScreen.jsx";
 
@@ -245,7 +245,7 @@ export default function App() {
   return (
     <>
       <UsgsHeader visible={showHeaderFooter}/>
-      <MenuBar
+      <Menubar
         showHeaderFooter={showHeaderFooter}
         handleOpenCloseHeader={handleOpenCloseHeader}
       />
diff --git a/src/components/presentational/Menubar.jsx b/src/components/presentational/Menubar.jsx
index 85db022853aea7beecb24c51b632d8a5d3a3769b..c81fd8d5c0823ce0b5aa98076475877b376a5a08 100644
--- a/src/components/presentational/Menubar.jsx
+++ b/src/components/presentational/Menubar.jsx
@@ -12,7 +12,7 @@ import DialogContent from "@mui/material/DialogContent";
 import DialogContentText from "@mui/material/DialogContentText";
 import DialogTitle from "@mui/material/DialogTitle";
 
-export default function MenuBar(props) {
+export default function Menubar(props) {
   const [showAbout, setShowAbout] = React.useState(false);
 
   const handleOpenAbout = () => {