Skip to content

Commit

Permalink
update:addlink to team name on landing page
Browse files Browse the repository at this point in the history
  • Loading branch information
maceteligolden committed Dec 26, 2023
1 parent 9dc357f commit 0c71d78
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/web/app/[locale]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,10 @@ type MyAppProps = {

function MainPage({ pageProps }: AppProps<MyAppProps>) {
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>(IssuesView.CARDS);
const { online } = useNetworkState();

Expand Down

0 comments on commit 0c71d78

Please sign in to comment.