diff --git a/packages/desktop-client/src/components/manager/ManagementApp.js b/packages/desktop-client/src/components/manager/ManagementApp.js index 3d4a2d2f438e6d545b8469b786eed53c5a1958d4..b7014654c7749fe836d42c248a091d8a8207d74b 100644 --- a/packages/desktop-client/src/components/manager/ManagementApp.js +++ b/packages/desktop-client/src/components/manager/ManagementApp.js @@ -16,8 +16,11 @@ import Bootstrap from './subscribe/Bootstrap'; import Error from './subscribe/Error'; import ChangePassword from './subscribe/ChangePassword'; import ConfigServer from './ConfigServer'; +import useServerVersion from '../../hooks/useServerVersion' function Version() { + const version = useServerVersion(); + return ( <ExternalLink style={{ @@ -32,7 +35,7 @@ function Version() { }} href={'https://actualbudget.com/blog/' + window.Actual.ACTUAL_VERSION} > - {window.Actual.ACTUAL_VERSION} + {`App: v${window.Actual.ACTUAL_VERSION} | Server: ${version}`} </ExternalLink> ); }