Merge branch 'master' into feat/ui

This commit is contained in:
2026-07-28 18:18:29 +04:00
2 changed files with 44 additions and 4 deletions
@@ -31,7 +31,6 @@ class HomeScreenBloc extends Bloc<HomeScreenEvent, HomeScreenState> {
_launcherApiClient = launcherApiClient,
_preferencesRepository = preferencesRepository,
_session = session,
_manifest = manifest,
super(
HomeScreenState(
model: HomeScreenModel.initial().copyWith(
@@ -59,7 +58,6 @@ class HomeScreenBloc extends Bloc<HomeScreenEvent, HomeScreenState> {
StreamSubscription<ClientSyncStatus>? _syncSubscription;
final LauncherSession _session;
final ClientManifest _manifest;
bool _pauseRequested = false;
Future<void> _onHomeScreenLoad(
@@ -147,7 +145,6 @@ class HomeScreenBloc extends Bloc<HomeScreenEvent, HomeScreenState> {
request: ClientSyncRequest(
installationDir: outputPath.toFilePath(),
accessToken: _session.accessToken,
manifest: _manifest,
),
isCancelled: () async => _pauseRequested,
),