Skip to content

Commit

Permalink
Merge pull request #2090 from veteransaffairscanada/remove_cookies_of…
Browse files Browse the repository at this point in the history
…f_popup

Remove disabled cookies banner
  • Loading branch information
Sarah Thompson authored Apr 17, 2019
2 parents 35d1ace + 68484a8 commit 49dff8d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/BB.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { withTheme } from "@material-ui/core/styles";
import { css, jsx } from "@emotion/core";
import Container from "../components/container";
import { globalTheme } from "../theme";
import { DisabledCookiesBanner } from "./disabled_cookies_banner";
// import { DisabledCookiesBanner } from "./disabled_cookies_banner";
import { areCookiesDisabled } from "../utils/common";
import BenefitsPane from "./benefits_pane";
import BreadCrumbs from "../components/breadcrumbs";
Expand Down Expand Up @@ -129,14 +129,14 @@ export class BB extends Component {
<Grid id="mainContent" item md={8} xs={12}>
<Grid container spacing={16}>
<Grid item xs={12}>
{this.state.showDisabledCookieBanner ? (
{/* {this.state.showDisabledCookieBanner ? (
<DisabledCookiesBanner
t={t}
onClose={() =>
this.setState({ showDisabledCookieBanner: false })
}
/>
) : null}
) : null} */}
</Grid>
</Grid>
<BenefitsPane id="BenefitsPane" t={t} store={store} url={url} />
Expand Down

0 comments on commit 49dff8d

Please sign in to comment.