Files
fotospiel-app/resources/js/admin/mobile/lib/dataExports.ts
Codex Agent a3538f6470
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
tests / ui (push) Has been cancelled
Fix data exports UI and scope format
2026-01-06 12:59:38 +01:00

6 lines
228 B
TypeScript

import type { DataExportSummary } from '../../api';
export function hasInProgressExports(exports: DataExportSummary[]): boolean {
return exports.some((entry) => entry.status === 'pending' || entry.status === 'processing');
}