mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-25 16:56:22 +02:00
chore: ran linting
This commit is contained in:
parent
2adf5750df
commit
195dbc5fc0
2 changed files with 19 additions and 9 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue