Skip to content
This repository has been archived by the owner on Jan 18, 2024. It is now read-only.

Commit

Permalink
fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
EvanBacon committed Sep 3, 2020
1 parent a73e853 commit b0b5959
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/expo-cli/src/commands/client/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ export default function (program: Command) {
: 'Do you want to install the latest client?',
});
if (answer.upgradeToLatest) {
await Simulator.upgradeExpoAsync(latestClient?.url);
await Simulator.upgradeExpoAsync({ url: latestClient?.url });
log('Done!');
return;
}
Expand All @@ -356,7 +356,7 @@ export default function (program: Command) {
: "It looks like we don't have a compatible client. Do you want to try the latest client?",
});
if (answer.updateToAClient) {
await Simulator.upgradeExpoAsync(latestClient?.url);
await Simulator.upgradeExpoAsync({ url: latestClient?.url });
log('Done!');
} else {
log('No client to install');
Expand Down

0 comments on commit b0b5959

Please sign in to comment.