fix: Don't show update screen when there's no update

This commit is contained in:
Ushie
2026-03-24 16:27:09 +03:00
parent dcb305bba9
commit f10cda0bc6

View File

@@ -337,7 +337,7 @@ fun DashboardScreen(
}
},
actions = {
if (updateVersion != null) {
if (hasUpdate) {
TooltipIconButton(
onClick = onUpdateClick,
tooltip = stringResource(R.string.update),