Fix /invite layout

This commit is contained in:
Alex Gleason
2022-04-30 12:10:06 -05:00
parent 706d864293
commit e17825777b

View File

@ -290,7 +290,7 @@ const SwitchingColumnsArea: React.FC = ({ children }) => {
<WrappedRoute path='/statuses/:statusId' exact component={Status} content={children} />
{features.scheduledStatuses && <WrappedRoute path='/scheduled_statuses' page={DefaultPage} component={ScheduledStatuses} content={children} />}
<WrappedRoute path='/invite/:token' component={RegisterInvite} content={children} publicRoute />
<WrappedRoute path='/invite/:token' page={DefaultPage} component={RegisterInvite} content={children} publicRoute />
<WrappedRoute path='/settings/profile' page={DefaultPage} component={EditProfile} content={children} />
<WrappedRoute path='/settings/export' page={DefaultPage} component={ExportData} content={children} />