diff --git a/frontend/src/components/SiteFooter.tsx b/frontend/src/components/SiteFooter.tsx index 57bb21946b..f775f9a64f 100644 --- a/frontend/src/components/SiteFooter.tsx +++ b/frontend/src/components/SiteFooter.tsx @@ -2,77 +2,90 @@ import { useCheckVersion, useHealth } from "src/hooks"; import { T } from "src/locale"; export function SiteFooter() { - const health = useHealth(); - const { data: versionData } = useCheckVersion(); + const health = useHealth(); + const { data: versionData } = useCheckVersion(); - const getVersion = () => { - if (!health.data) { - return ""; - } - const v = health.data.version; - return `v${v.major}.${v.minor}.${v.revision}`; - }; + const getVersion = () => { + if (!health.data) { + return ""; + } + const v = health.data.version; + return `v${v.major}.${v.minor}.${v.revision}`; + }; - return ( - - ); + return ( + + ); }