diff options
Diffstat (limited to 'src/client/sync/push.ts')
| -rw-r--r-- | src/client/sync/push.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/client/sync/push.ts b/src/client/sync/push.ts index 7702583..2493e4e 100644 --- a/src/client/sync/push.ts +++ b/src/client/sync/push.ts @@ -129,7 +129,9 @@ function reviewLogToSyncData(log: LocalReviewLog): SyncReviewLogData { /** * Convert pending changes to sync push data format */ -export function pendingChangesToPushData(changes: PendingChanges): SyncPushData { +export function pendingChangesToPushData( + changes: PendingChanges, +): SyncPushData { return { decks: changes.decks.map(deckToSyncData), cards: changes.cards.map(cardToSyncData), |
