diff --git a/packages/core/src/features/application-update/child-features/application-update-using-application-menu/main/check-for-updates-menu-item.injectable.ts b/packages/core/src/features/application-update/child-features/application-update-using-application-menu/main/check-for-updates-menu-item.injectable.ts index 048861f871..9fc21375f2 100644 --- a/packages/core/src/features/application-update/child-features/application-update-using-application-menu/main/check-for-updates-menu-item.injectable.ts +++ b/packages/core/src/features/application-update/child-features/application-update-using-application-menu/main/check-for-updates-menu-item.injectable.ts @@ -15,7 +15,7 @@ const checkForUpdatesMenuItemInjectable = getInjectable({ id: "check-for-updates-menu-item", instantiate: (di) => { - const processCheckingForUpdates = di.inject(processCheckingForUpdatesInjectable,); + const processCheckingForUpdates = di.inject(processCheckingForUpdatesInjectable); const showApplicationWindow = di.inject(showApplicationWindowInjectable); const updatingIsEnabled = di.inject(updatingIsEnabledInjectable); const isMac = di.inject(isMacInjectable); @@ -36,12 +36,12 @@ const checkForUpdatesMenuItemInjectable = getInjectable({ await showApplicationWindow(); } else { showMessagePopup( - `No Updates Available`, - 'You\'re all good', - `You've got the latest version of Lens,\nthanks for staying on the ball.`, + "No Updates Available", + "You're all good", + "You've got the latest version of Lens,\nthanks for staying on the ball.", { - textWidth: 300 - } + textWidth: 300, + }, ); } }, diff --git a/packages/core/src/features/application-update/child-features/application-update-using-tray/main/tray-items/check-for-updates-tray-item.injectable.ts b/packages/core/src/features/application-update/child-features/application-update-using-tray/main/tray-items/check-for-updates-tray-item.injectable.ts index 2ea4901524..ccbb71c323 100644 --- a/packages/core/src/features/application-update/child-features/application-update-using-tray/main/tray-items/check-for-updates-tray-item.injectable.ts +++ b/packages/core/src/features/application-update/child-features/application-update-using-tray/main/tray-items/check-for-updates-tray-item.injectable.ts @@ -67,12 +67,12 @@ const checkForUpdatesTrayItemInjectable = getInjectable({ await showApplicationWindow(); } else { showMessagePopup( - `No Updates Available`, - 'You\'re all good', - `You've got the latest version of Lens,\nthanks for staying on the ball.`, + "No Updates Available", + "You're all good", + "You've got the latest version of Lens,\nthanks for staying on the ball.", { - textWidth: 300 - } + textWidth: 300, + }, ); } },