Update path for viewing a party

This commit is contained in:
Justin Edmund 2020-09-16 03:45:10 -07:00
parent 81cf4889e8
commit b59c92b390

View file

@ -15,7 +15,7 @@ const Main = () => (
<Switch>
<Route exact path='/' component={New} />
<Route exact path='/parties/' component={Parties} />
<Route path='/:hash' component={Party} />
<Route path='/p/:hash' component={Party} />
</Switch>
</main>
)