fix: Hanging }

This commit is contained in:
Tom Moor
2023-01-07 10:58:22 -05:00
parent d4da33424b
commit a333f48102

View File

@@ -17,7 +17,7 @@ const PageTitle = ({ title, favicon }: Props) => {
return ( return (
<Helmet> <Helmet>
<title> <title>
{team?.name ? `${title} - ${team.name}` : `${title} - ${env.APP_NAME}}`} {team?.name ? `${title} - ${team.name}` : `${title} - ${env.APP_NAME}`}
</title> </title>
{favicon ? ( {favicon ? (
<link rel="shortcut icon" href={favicon} key={favicon} /> <link rel="shortcut icon" href={favicon} key={favicon} />