HomeScreen.tsx
- if (!isFullySynced) return <Spinner />
+ if (syncStatus === Pending) return <Spinner />
+ return <Dashboard syncStatus={syncStatus} />
In ReviewReplace isFullySynced with sync status#549
In ReviewShow stale-data banner while syncing#551
In ProgressReduce ETA jitter on poor networks#554