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 c9d7755 commit ccf67efCopy full SHA for ccf67ef
packages/powersync_core/lib/src/sync/mutable_sync_status.dart
@@ -79,7 +79,7 @@ final class MutableSyncStatus {
79
}
80
81
82
- SyncStatus immutableSnapsot() {
+ SyncStatus immutableSnapshot() {
83
return SyncStatus(
84
connected: connected,
85
connecting: connecting,
@@ -111,7 +111,7 @@ final class SyncStatusStateStream {
111
return;
112
113
114
- final current = status.immutableSnapsot();
+ final current = status.immutableSnapshot();
115
if (current != _lastPublishedStatus) {
116
_statusStreamController.add(current);
117
_lastPublishedStatus = current;
0 commit comments