Fix guest access

This commit is contained in:
Robert Long
2021-10-06 12:33:43 -07:00
parent 9ecfaa4ddb
commit ea2cf98160

View File

@@ -69,7 +69,7 @@ export default function App() {
{authenticated ? ( {authenticated ? (
<Room client={client} /> <Room client={client} />
) : ( ) : (
<GuestAuthPage onRegisterGuest={registerGuest} /> <GuestAuthPage onLoginAsGuest={registerGuest} />
)} )}
</SentryRoute> </SentryRoute>
</Switch> </Switch>