Skip to content

Commit

Permalink
fix: e2e missing httpClientRef (#1538)
Browse files Browse the repository at this point in the history
  • Loading branch information
felangel authored Nov 27, 2023
1 parent b8ab199 commit 0ca70f5
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import 'package:path/path.dart' as p;
import 'package:scoped/scoped.dart';
import 'package:shorebird_cli/src/auth/auth.dart';
import 'package:shorebird_cli/src/config/config.dart';
import 'package:shorebird_cli/src/http_client/http_client.dart';
import 'package:shorebird_cli/src/logger.dart';
import 'package:shorebird_cli/src/platform.dart';
import 'package:shorebird_code_push_client/shorebird_code_push_client.dart';
Expand All @@ -17,7 +18,7 @@ import 'package:uuid/uuid.dart';
R runWithOverrides<R>(R Function() body) {
return runScoped(
body,
values: {authRef, loggerRef, platformRef},
values: {authRef, httpClientRef, loggerRef, platformRef},
);
}

Expand Down

0 comments on commit 0ca70f5

Please sign in to comment.