File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ import { FavoritesSection } from "@/components/Home/FavoritesSection/FavoritesSection" ;
2+
3+ export function DashboardFavoritesView ( ) {
4+ return < FavoritesSection /> ;
5+ }
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ import { isFlagEnabled } from "@/components/shared/Settings/useFlags";
1717import { BASE_URL , IS_GITHUB_PAGES } from "@/utils/constants" ;
1818
1919import RootLayout from "../components/layout/RootLayout" ;
20+ import { DashboardFavoritesView } from "./Dashboard/DashboardFavoritesView" ;
2021import { DashboardLayout } from "./Dashboard/DashboardLayout" ;
2122import Editor from "./Editor" ;
2223import Home from "./Home" ;
@@ -128,7 +129,7 @@ const dashboardComponentsRoute = createRoute({
128129const dashboardFavoritesRoute = createRoute ( {
129130 getParentRoute : ( ) => dashboardRoute ,
130131 path : "/favorites" ,
131- component : ComingSoon ,
132+ component : DashboardFavoritesView ,
132133} ) ;
133134
134135const dashboardRecentlyViewedRoute = createRoute ( {
You can’t perform that action at this time.
0 commit comments