From a0f516fdada4553bdc505e1286a91ae920a52854 Mon Sep 17 00:00:00 2001
From: Jacob Cain <jrcain@usgs.gov>
Date: Tue, 21 Mar 2023 15:55:49 -0700
Subject: [PATCH] capitalization fix

---
 src/components/container/App.jsx          | 4 ++--
 src/components/presentational/Menubar.jsx | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/components/container/App.jsx b/src/components/container/App.jsx
index 7cee0ff31..f6b99cc76 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 85db02285..c81fd8d5c 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 = () => {
-- 
GitLab