Skip to content

Commit

Permalink
added bookmarks page
Browse files Browse the repository at this point in the history
  • Loading branch information
NazireAta committed May 15, 2024
1 parent aa3554c commit c2bdf3b
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions frontend/src/routes/bookmarks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit c2bdf3b

Please sign in to comment.