diff --git a/src/layouts/DefaultLayout/components/AppTopbar/index.js b/src/layouts/DefaultLayout/components/AppTopbar/index.js
index 8aae5f8..91ed853 100644
--- a/src/layouts/DefaultLayout/components/AppTopbar/index.js
+++ b/src/layouts/DefaultLayout/components/AppTopbar/index.js
@@ -7,15 +7,21 @@ import LogoIcon from '../../../../icons/LogoIcon';
import { Button } from 'primereact/button';
import TopBarProfileMenu from '../../../../components/TopBarProfileMenu';
import NotificationsSidebar from '../../../../components/NotificationsSidebar';
+import { useStore } from '../../../../store';
+import { head } from 'ramda';
const AppTopbar = () => {
const menuLeft = useRef(null);
+ const companies = useStore().main.companies();
+ const chosenCompanyId = useStore().main.chosenCompanyId();
+ const company = head(companies.filter(o => o.id === chosenCompanyId));
const startContent =