We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae127af commit 78cc0c9Copy full SHA for 78cc0c9
packages/compass/src/app/index.tsx
@@ -379,9 +379,15 @@ const app = {
379
});
380
}
381
382
+ log.info(mongoLogId(1_001_000_338), 'Main Window', 'Recent version info', {
383
+ previousVersion: state.previousVersion,
384
+ highestInstalledVersion: state.highestInstalledVersion,
385
+ APP_VERSION,
386
+ });
387
+
388
if (
- semver.gt(APP_VERSION, state.previousVersion) &&
- state.previousVersion !== DEFAULT_APP_VERSION
389
+ state.previousVersion !== DEFAULT_APP_VERSION &&
390
+ APP_VERSION !== state.previousVersion
391
) {
392
// Wait a bit before showing the update toast.
393
setTimeout(() => {
0 commit comments