We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 917aba4 commit f8eac12Copy full SHA for f8eac12
packages/common/src/client/sync/stream/core-instruction.ts
@@ -74,7 +74,7 @@ function priorityToJs(status: SyncPriorityStatus): sync_status.SyncPriorityStatu
74
return {
75
priority: status.priority,
76
hasSynced: status.has_synced ?? undefined,
77
- lastSyncedAt: status?.last_synced_at != null ? new Date(status!.last_synced_at! * 1000) : undefined
+ lastSyncedAt: status?.last_synced_at != null ? new Date(status.last_synced_at * 1000) : undefined
78
};
79
}
80
0 commit comments