From c2bdf3b41ba9496ec51306b78f7541a88e1552e1 Mon Sep 17 00:00:00 2001 From: Nazire Date: Wed, 15 May 2024 15:22:32 +0300 Subject: [PATCH] added bookmarks page --- frontend/src/routes/bookmarks.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/frontend/src/routes/bookmarks.tsx b/frontend/src/routes/bookmarks.tsx index a364412b..214201c4 100644 --- a/frontend/src/routes/bookmarks.tsx +++ b/frontend/src/routes/bookmarks.tsx @@ -2,14 +2,12 @@ import React from 'react'; import { Recipe } from "../components/Recipe"; import { FullscreenLoading } from "../components/FullscreenLoading"; import { Alert, AlertDescription, AlertTitle } from "../components/ui/alert"; -import { AlertCircle, Filter } from "lucide-react"; -import { useNavigate } from "react-router-dom"; +import { AlertCircle } from "lucide-react"; import { useGetMe } from "../services/api/semanticBrowseComponents"; import { renderError } from "../services/api/semanticBrowseFetcher"; // Inside the Bookmarks component export const Bookmarks = () => { - const navigate = useNavigate(); const { data: bookmarksData, isLoading, error } = useGetMe({}); if (isLoading) {