chore: ran backend and frontend linting

This commit is contained in:
Anish Sarkar 2026-01-22 16:07:06 +05:30
parent 3d4a8f981c
commit be7ba76417
11 changed files with 119 additions and 127 deletions

View file

@ -87,20 +87,16 @@ export function LayoutDataProvider({
// Inbox hook
const userId = user?.id ? String(user.id) : null;
const {
inboxItems,
unreadCount,
loading: inboxLoading,
const {
inboxItems,
unreadCount,
loading: inboxLoading,
loadingMore: inboxLoadingMore,
hasMore: inboxHasMore,
loadMore: inboxLoadMore,
markAsRead,
markAllAsRead
} = useInbox(
userId,
Number(searchSpaceId) || null,
null
);
markAsRead,
markAllAsRead,
} = useInbox(userId, Number(searchSpaceId) || null, null);
// Delete dialogs state
const [showDeleteChatDialog, setShowDeleteChatDialog] = useState(false);