Add export progress hint
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
tests / ui (push) Has been cancelled

This commit is contained in:
Codex Agent
2026-01-06 13:03:05 +01:00
parent a3538f6470
commit 4fe589f0e2
3 changed files with 9 additions and 2 deletions

View File

@@ -213,6 +213,11 @@ export default function MobileDataExportsPage() {
<Switch.Thumb />
</Switch>
</XStack>
{hasInProgress ? (
<Text fontSize="$xs" color={muted}>
{t('dataExports.request.progress', 'Export is running. This list refreshes automatically.')}
</Text>
) : null}
</YStack>
<CTAButton
label={requesting ? t('dataExports.actions.requesting', 'Requesting...') : t('dataExports.actions.request', 'Request export')}