diff --git a/public/index.html b/public/index.html index edfaf80df..3054a40ec 100644 --- a/public/index.html +++ b/public/index.html @@ -12,7 +12,7 @@ --> - + - + diff --git a/src/components/Header/Header.js b/src/components/Header/Header.js index f83e37c6d..3fcaeadfb 100644 --- a/src/components/Header/Header.js +++ b/src/components/Header/Header.js @@ -3,8 +3,12 @@ import HeaderNav from './HeaderNav/HeaderNav'; import HeaderMessages from './HeaderMessages/HeaderMessages'; import HeaderUserMenu from './HeaderUserMenu/HeaderUserMenu'; import { FormattedMessage } from 'react-intl'; +import Notifications from './Notifications'; -const Header = ({ userData: { user, nav, alert }, location: { pathname } }) => { +const Header = ({ + userData: { user, nav, alert, notifications, emptyNotificationText }, + location: { pathname }, +}) => { const inactiveSection = pathname.match(/^\/integrations\/*/) !== null; return (
@@ -38,9 +42,11 @@ const Header = ({ userData: { user, nav, alert }, location: { pathname } }) => {