[GUI] Hide Update Alert

This commit is contained in:
Ben C 2025-07-24 21:14:01 -04:00
parent 8bedb67e3c
commit 7458a1c857
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

2
Cargo.lock generated
View File

@ -3129,7 +3129,7 @@ dependencies = [
[[package]]
name = "owmods_gui"
version = "0.15.2"
version = "0.15.3"
dependencies = [
"anyhow",
"log",

View File

@ -53,7 +53,7 @@ const AppAlert = memo(function AppAlert() {
commands.dismissAlert({ alert: alert! });
}, [alert]);
if (alert === null || !alert.enabled) {
if (alert === null || alert.message?.startsWith("<0.15.3:") || !alert.enabled) {
return <></>;
}