Skip to content

Commit

Permalink
fixup! feat: introduce VersionWelcomeDialog
Browse files Browse the repository at this point in the history
Show donate dialog after the first time a first IDE version is loaded
  • Loading branch information
giacomocusinato committed Nov 29, 2024
1 parent 82ae569 commit df1d944
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export class CheckForIDEUpdates extends Contribution {
const prevSemVer = new SemVer(prevVersion ?? '');
const currSemVer = new SemVer(appVersion ?? '');

if (prevSemVer.prerelease || currSemVer.prerelease) {
if (prevSemVer.prerelease.length || currSemVer.prerelease.length) {
return false;
}

Expand Down

0 comments on commit df1d944

Please # to comment.