chore: updated docs & refactored sst_service.py

This commit is contained in:
DESKTOP-RTLN3BA\$punk 2025-10-15 14:31:38 -07:00
parent 5ed9aa2b0b
commit 70b547c9c9
5 changed files with 53 additions and 41 deletions

View file

@ -36,7 +36,7 @@ export default function DocumentsTable() {
created_at: true,
});
const [pageIndex, setPageIndex] = useState(0);
const [pageSize, setPageSize] = useState(10);
const [pageSize, setPageSize] = useState(50);
const [sortKey, setSortKey] = useState<SortKey>("title");
const [sortDesc, setSortDesc] = useState(false);
const [selectedIds, setSelectedIds] = useState<Set<number>>(new Set());