Removed visiblity favorites of a status

todo: remove account ids from returning in "favourited_by"
This commit is contained in:
mgabdev
2019-07-03 23:47:23 -04:00
parent 99e25130e1
commit e210c70e21
3 changed files with 9 additions and 23 deletions

View File

@@ -232,9 +232,6 @@ class SwitchingColumnsArea extends React.PureComponent {
<Redirect from='/@:username/posts/:statusId/reblogs' to='/:username/posts/:statusId/reblogs' />
<WrappedRoute path='/:username/posts/:statusId/reblogs' layout={LAYOUT.STATUS} component={Reblogs} content={children} />
<Redirect from='/@:username/posts/:statusId/favorites' to='/:username/posts/:statusId/favorites' />
<WrappedRoute path='/:username/posts/:statusId/favorites' layout={LAYOUT.STATUS} component={Favourites} content={children} />
<WrappedRoute layout={LAYOUT.EMPTY} component={GenericNotFound} content={children} />
</Switch>
);