Skip to content

Commit

Permalink
fix: HASSU-978 (#397)
Browse files Browse the repository at this point in the history
* change node_env to hassus own environment variable
  • Loading branch information
kettunju committed Sep 18, 2022
1 parent 02ddeb8 commit f42d485
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/layout/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ interface Props {
export default function Layout({ children, routeLabels }: Props): ReactElement {
return (
<div className="min-h-screen relative flex flex-col">
{process.env.NODE_ENV !== "production" && <NotificationBar />}
{process.env.ENVIRONMENT !== "prod" && <NotificationBar />}
<Header />
<Breadcrumbs routeLabels={routeLabels} />
<Container sx={{ marginBottom: "110px" }}>
Expand Down

0 comments on commit f42d485

Please sign in to comment.