Skip to content

Commit

Permalink
Merge pull request #1855 from habitat-sh/ts_error
Browse files Browse the repository at this point in the history
fixing error with LTS getting aarch platform
  • Loading branch information
mwrock authored Oct 30, 2024
2 parents be356c6 + cea9415 commit d9080cb
Showing 1 changed file with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,12 +99,7 @@ export class PackageComponent implements OnInit, OnDestroy {
.subscribe(([channel]) => {
channel.forEach((channel) => {
if (channel.name === latestLTS) {
if (this.target === undefined) {
this.fetchCurrentLts('');
}
else {
this.fetchCurrentLts(this.target);
}
this.fetchCurrentLts('');
return;
}
});
Expand Down

0 comments on commit d9080cb

Please sign in to comment.