fix(web): stop showing version announcement on first run of a new web instance (#609)

This commit is contained in:
Alex 2022-09-07 06:38:29 -05:00 committed by GitHub
parent 209e6332b3
commit a337402124
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -21,7 +21,7 @@ export const checkAppVersion = async (): Promise<CheckAppVersionReponse> => {
if (!appVersion) {
return {
shouldShowAnnouncement: true,
shouldShowAnnouncement: false,
remoteVersion: latestRelease.tag_name,
localVersion: 'empty'
};