chore: biome & ruff checks

This commit is contained in:
MSI\ModSetter 2025-10-01 18:50:36 -07:00
parent 35a7427b00
commit 898fc884a9
5 changed files with 30 additions and 38 deletions

View file

@ -40,13 +40,10 @@ const DocumentSelector = React.memo(
const { search_space_id } = useParams();
const [isOpen, setIsOpen] = useState(false);
const { documents, loading, isLoaded, fetchDocuments } = useDocuments(
Number(search_space_id),
{
lazy: true,
pageSize: -1, // Fetch all documents with large page size
}
);
const { documents, loading, isLoaded, fetchDocuments } = useDocuments(Number(search_space_id), {
lazy: true,
pageSize: -1, // Fetch all documents with large page size
});
const handleOpenChange = useCallback(
(open: boolean) => {