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.
2 parents ff09377 + 499df63 commit 30372a3Copy full SHA for 30372a3
enjoy/src/renderer/components/layouts/title-bar.tsx
@@ -223,8 +223,8 @@ export const TitleBar = () => {
223
t("checkingForUpdate")}
224
{updaterState === "update-available" && t("updateAvailable")}
225
{updaterState === "update-downloaded" && t("quitAndInstall")}
226
- {!updaterState ||
227
- (updaterState === "error" && t("checkUpdate"))}
+ {(!updaterState || updaterState === "error") &&
+ t("checkUpdate")}
228
</span>
229
</DropdownMenuItem>
230
</DropdownMenuContent>
0 commit comments