Skip to content

Commit

Permalink
Build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Wolfteam committed Sep 15, 2023
1 parent 858d63b commit 7730548
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/infrastructure/backup_restore_service.dart
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ class BackupRestoreServiceImpl implements BackupRestoreService {
final notifications = _dataService.notifications.getDataForBackup();
bk = bk.copyWith(notifications: notifications);
case AppBackupDataType.wishSimulator:
final wishSimulator = _dataService.wishSimulator.getDataForBackup();
final wishSimulator = await _dataService.wishSimulator.getDataForBackup();
bk = bk.copyWith(wishSimulator: wishSimulator);
}
}
Expand Down

0 comments on commit 7730548

Please sign in to comment.