diff --git a/frontend/src/routes/_app.notifications.tsx b/frontend/src/routes/_app.notifications.tsx index 95991e19..1c51f77e 100644 --- a/frontend/src/routes/_app.notifications.tsx +++ b/frontend/src/routes/_app.notifications.tsx @@ -3,6 +3,7 @@ import { useQuery } from "@tanstack/react-query"; import { notificationsService } from "@/services"; import { Card } from "@/components/shared/primitives"; import { cn } from "@/lib/utils"; +import { Bell } from "lucide-react"; export const Route = createFileRoute("/_app/notifications")({ head: () => ({ @@ -15,7 +16,10 @@ export const Route = createFileRoute("/_app/notifications")({ }); function NotificationsPage() { - const { data = [] } = useQuery({ queryKey: ["notifications"], queryFn: notificationsService.list }); + const { data = [] } = useQuery({ + queryKey: ["notifications"], + queryFn: notificationsService.list, + }); return (
{n.text}
- {n.ago} -+ You're all caught up! New notifications will appear here. +
++ {n.text} +
+ + {n.ago} + +