remove useCallback logic

This commit is contained in:
Konstantinos Spartalis
2025-11-11 18:05:17 +02:00
parent dc03ad8239
commit 87eef10ff8

View File

@@ -13,7 +13,7 @@ export function SiteFooter() {
} }
const v = health.data.version; const v = health.data.version;
return `v${v.major}.${v.minor}.${v.revision}`; return `v${v.major}.${v.minor}.${v.revision}`;
}, [health.data]); };
useEffect(() => { useEffect(() => {
const checkForUpdates = async () => { const checkForUpdates = async () => {
@@ -96,4 +96,4 @@ export function SiteFooter() {
</div> </div>
</footer> </footer>
); );
} }