Bookmark folders route should not be feature gated

Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
environments/review-bookmark-f-zlv7hu/deployments/4466
marcin mikołajczak 2024-03-23 15:59:24 +01:00
rodzic eceafedec4
commit 1ef88e2cc2
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -246,7 +246,7 @@ const SwitchingColumnsArea: React.FC<ISwitchingColumnsArea> = ({ children }) =>
{features.lists && <WrappedRoute path='/list/:id' page={DefaultPage} component={ListTimeline} content={children} />}
{features.bookmarks && <WrappedRoute path='/bookmarks/all' page={DefaultPage} component={Bookmarks} content={children} />}
{features.bookmarks && <WrappedRoute path='/bookmarks/:id' page={DefaultPage} component={Bookmarks} content={children} />}
{features.bookmarkFolders && <WrappedRoute path='/bookmarks' page={DefaultPage} component={BookmarkFolders} content={children} />}
<WrappedRoute path='/bookmarks' page={DefaultPage} component={BookmarkFolders} content={children} />
<WrappedRoute path='/notifications' page={DefaultPage} component={Notifications} content={children} />