Skip to content

Commit

Permalink
update restrt function for consistancy
Browse files Browse the repository at this point in the history
  • Loading branch information
filip131311 committed Sep 16, 2024
1 parent f4bea45 commit baf62da
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/vscode-extension/src/project/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,9 @@ export class Project
if (forceCleanBuild) {
await this.start(true, true);
return await this.selectDevice(deviceInfo, true);
} else if (this.detectedFingerprintChange) {
}

if (this.detectedFingerprintChange) {
return await this.selectDevice(deviceInfo, false);
}

Expand Down

0 comments on commit baf62da

Please sign in to comment.