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 fae8c25 commit 499df63Copy full SHA for 499df63
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