diff --git a/apps/web/app/[locale]/page.tsx b/apps/web/app/[locale]/page.tsx index 814b3ec37..fa8e42978 100644 --- a/apps/web/app/[locale]/page.tsx +++ b/apps/web/app/[locale]/page.tsx @@ -48,9 +48,10 @@ type MyAppProps = { function MainPage({ pageProps }: AppProps) { const t = useTranslations(); + const { isTeamMember, isTrackingEnabled, activeTeam } = useOrganizationTeams(); - const breadcrumb = [{title: JSON.parse(t('pages.home.BREADCRUMB')), href: '/'}, activeTeam?.name || '']; + const breadcrumb = [{title: JSON.parse(t('pages.home.BREADCRUMB')), href: '/'}, { title: activeTeam?.name || '', href:'/'}]; const [view, setView] = useState(IssuesView.CARDS); const { online } = useNetworkState();