Skip to content
This repository was archived by the owner on Oct 5, 2022. It is now read-only.

Commit 2ccbfaf

Browse files
committed
informative banner has been removed
1 parent 6038cb9 commit 2ccbfaf

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

src/layout/DesktopLayout/Navbar/index.js

-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import { useHistory, useLocation } from "react-router-dom"
44
import { AppBar, Toolbar, Button } from "@material-ui/core"
55
import { makeStyles } from "@material-ui/core/styles"
66

7-
import InformativeBanner from "../../../components/InformativeBanner"
87
import routes from "../../../routes"
98

109
const navbarHeight = 40
@@ -50,7 +49,6 @@ const Navbar = () => {
5049
return (
5150
<React.Fragment>
5251
<AppBar position='fixed' className={classes.appbar}>
53-
<InformativeBanner />
5452
<Toolbar className={classes.toolbar}>
5553
{routes.map(({ label, path }) => (
5654
<Button

src/layout/MobileLayout/index.js

+1-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import React from "react"
22
import { makeStyles, AppBar } from "@material-ui/core"
33
import FabMobile from "./FabMobile"
44
import FadeMenu from "./FadeMenu.js"
5-
import InformativeBanner from "../../components/InformativeBanner"
65

76
const useStyles = makeStyles(() => ({
87
content: {
@@ -19,9 +18,7 @@ const MobileLayout = ({ children }) => {
1918
<FadeMenu />
2019
<FabMobile />
2120
<div className={classes.content}>
22-
<AppBar position='fixed' className={classes.appbar}>
23-
<InformativeBanner />
24-
</AppBar>
21+
<AppBar position='fixed' className={classes.appbar}></AppBar>
2522
{children}
2623
</div>
2724
</React.Fragment>

0 commit comments

Comments
 (0)