Skip to content

Commit

Permalink
manager: Fix new version tip
Browse files Browse the repository at this point in the history
  • Loading branch information
tiann committed Mar 17, 2024
1 parent 44c0b3a commit a5e7655
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ fun UpdateCard() {
val updateText = stringResource(id = R.string.module_update)

AnimatedVisibility(
visible = newVersionCode >= currentVersionCode,
visible = newVersionCode > currentVersionCode,
enter = fadeIn() + expandVertically(),
exit = shrinkVertically() + fadeOut()
) {
Expand Down

0 comments on commit a5e7655

Please sign in to comment.