Remove title from [party]

This commit is contained in:
Justin Edmund 2022-03-04 06:03:14 -08:00
parent 00b2521d19
commit 46e17f7172

View file

@ -1,5 +1,4 @@
import React from 'react'
import Head from 'next/head'
import { useRouter } from 'next/router'
import Party from '~components/Party'
@ -9,9 +8,6 @@ const PartyRoute: React.FC = () => {
return (
<div id="Content">
<Head>
<title>Party</title>
</Head>
<Party slug={slug as string} />
</div>
)