aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/client/sync/push.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/sync/push.ts')
-rw-r--r--src/client/sync/push.ts2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/client/sync/push.ts b/src/client/sync/push.ts
index 61c7f30..e5c5fd4 100644
--- a/src/client/sync/push.ts
+++ b/src/client/sync/push.ts
@@ -39,7 +39,6 @@ export interface SyncDeckData {
id: string;
name: string;
description: string | null;
- newCardsPerDay: number;
createdAt: string;
updatedAt: string;
deletedAt: string | null;
@@ -154,7 +153,6 @@ function deckToSyncData(deck: LocalDeck): SyncDeckData {
id: deck.id,
name: deck.name,
description: deck.description,
- newCardsPerDay: deck.newCardsPerDay,
createdAt: deck.createdAt.toISOString(),
updatedAt: deck.updatedAt.toISOString(),
deletedAt: deck.deletedAt?.toISOString() ?? null,