In the client reduc store, we have isSyncing and status as statue.
Status is an empty string when isSyncing === false. All the information we need is in status.
We also have syncingTransactionIds which, when empty, means no syncing.
Is sync status adding any extra value, now that we show the sync status of each transaction? We can probably derive the status from the number of transactions.
Syncing {N} transaction{N> 1 && s}
There is also an "import transaction status" but that should be replaced by it's own independent status/loading like state
In the client reduc store, we have
isSyncing
andstatus
as statue. Status is an empty string whenisSyncing === false.
All the information we need is in status.We also have
syncingTransactionIds
which, when empty, means no syncing.Is sync status adding any extra value, now that we show the sync status of each transaction? We can probably derive the status from the number of transactions.
Syncing {N} transaction{N> 1 && s}
There is also an "import transaction status" but that should be replaced by it's own independent status/loading like state