minimal changes

This commit is contained in:
Konstantinos Spartalis
2025-11-11 17:42:46 +02:00
committed by GitHub
parent ae5faa75fa
commit dc03ad8239
3 changed files with 5 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
import { useCallback, useEffect, useState } from "react";
import { useEffect, useState } from "react";
import { useHealth } from "src/hooks";
import { T } from "src/locale";
@@ -7,7 +7,7 @@ export function SiteFooter() {
const [latestVersion, setLatestVersion] = useState<string | null>(null);
const [isNewVersionAvailable, setIsNewVersionAvailable] = useState(false);
const getVersion = useCallback(() => {
const getVersion = () => {
if (!health.data) {
return "";
}
@@ -96,4 +96,4 @@ export function SiteFooter() {
</div>
</footer>
);
}
}