fix(mobile): Fix a typo in SyncStreamService Logging (#20283)

Fix typo in logging
This commit is contained in:
beposec 2025-07-26 13:29:42 +02:00 committed by GitHub
parent cb344cb014
commit f2141de5bb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -25,7 +25,7 @@ class SyncStreamService {
bool get isCancelled => _cancelChecker?.call() ?? false;
Future<void> sync() {
_logger.info("Remote sync request for userr");
_logger.info("Remote sync request for user");
DLog.log("Remote sync request for user");
// Start the sync stream and handle events
return _syncApiRepository.streamChanges(_handleEvents);