chore: ran linting

This commit is contained in:
Anish Sarkar 2026-03-08 21:17:45 +05:30
parent 2adf5750df
commit 195dbc5fc0
2 changed files with 19 additions and 9 deletions

View file

@ -97,7 +97,9 @@ export function useDocumentsProcessing(searchSpaceId: number | null): DocumentsP
}
liveQuery.subscribe(
(result: { rows: Array<{ processing_count: number | string; failed_count: number | string }> }) => {
(result: {
rows: Array<{ processing_count: number | string; failed_count: number | string }>;
}) => {
if (!mounted || !result.rows?.[0]) return;
const processingCount = Number(result.rows[0].processing_count) || 0;