remove hardcoded version number

This commit is contained in:
Konstantinos Spartalis
2025-11-10 20:37:25 +02:00
parent f1d7203212
commit b434bba12f

View File

@@ -43,7 +43,7 @@ export function SiteFooter() {
const latest = data.tag_name;
setLatestVersion(latest);
const currentVersion = "2.12.1";
const currentVersion = getVersion();
if (currentVersion && compareVersions(currentVersion, latest)) {
setIsNewVersionAvailable(true);
}