Skip to content

Commit 87eef10

Browse files
committed
remove useCallback logic
1 parent dc03ad8 commit 87eef10

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/src/components/SiteFooter.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export function SiteFooter() {
1313
}
1414
const v = health.data.version;
1515
return `v${v.major}.${v.minor}.${v.revision}`;
16-
}, [health.data]);
16+
};
1717

1818
useEffect(() => {
1919
const checkForUpdates = async () => {
@@ -96,4 +96,4 @@ export function SiteFooter() {
9696
</div>
9797
</footer>
9898
);
99-
}
99+
}

0 commit comments

Comments
 (0)