chore: ran both frontend and backend linting

This commit is contained in:
Anish Sarkar 2026-01-14 02:05:40 +05:30
parent 99bd2df463
commit 5bd6bd3d67
21 changed files with 861 additions and 739 deletions

View file

@ -13,7 +13,8 @@ import { cn } from "@/lib/utils";
export function NotificationButton() {
const { data: user } = useAtomValue(currentUserAtom);
const userId = user?.id ? String(user.id) : null;
const { notifications, unreadCount, loading, markAsRead, markAllAsRead } = useNotifications(userId);
const { notifications, unreadCount, loading, markAsRead, markAllAsRead } =
useNotifications(userId);
return (
<Popover>
@ -50,4 +51,3 @@ export function NotificationButton() {
</Popover>
);
}