From d2c7f3f1666d282ce4176a6f5ec72b2f5a3e860f Mon Sep 17 00:00:00 2001 From: Matheus Rocha Vieira Date: Wed, 8 Jul 2020 14:48:14 -0300 Subject: [PATCH] Update app/components/PageTitle.js Co-authored-by: Tom Moor --- app/components/PageTitle.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/PageTitle.js b/app/components/PageTitle.js index af02af4d4..43413e006 100644 --- a/app/components/PageTitle.js +++ b/app/components/PageTitle.js @@ -16,7 +16,7 @@ const { team } = auth; const PageTitle = observer(({ auth, title, favicon }: Props) => ( - {team.name ? `${title} - ${team.name} | Outline` : `${title} - Outline`} + {team ? `${title} - ${team.name} - Outline` : `${title} - Outline`}