From c171597c7bff91856e944c2cca3c56c04f7d9e93 Mon Sep 17 00:00:00 2001 From: "Arthur E. Jones" Date: Wed, 20 Jul 2022 11:25:55 -0500 Subject: [PATCH] refactor: remove change notes link Release note publishing is currently in flux. As such, there is no determinate location to link to. --- .../src/components/manager/ManagementApp.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/desktop-client/src/components/manager/ManagementApp.js b/packages/desktop-client/src/components/manager/ManagementApp.js index b701465..bbf702a 100644 --- a/packages/desktop-client/src/components/manager/ManagementApp.js +++ b/packages/desktop-client/src/components/manager/ManagementApp.js @@ -4,7 +4,7 @@ import { createBrowserHistory } from 'history'; import { Switch, Redirect, Router, Route } from 'react-router-dom'; import { send } from 'loot-core/src/platform/client/fetch'; import * as actions from 'loot-core/src/client/actions'; -import { View, ExternalLink, Button } from 'loot-design/src/components/common'; +import { View, Text } from 'loot-design/src/components/common'; import { colors } from 'loot-design/src/style'; import ServerURL from './ServerURL'; import LoggedInUser from '../LoggedInUser'; @@ -16,13 +16,13 @@ import Bootstrap from './subscribe/Bootstrap'; import Error from './subscribe/Error'; import ChangePassword from './subscribe/ChangePassword'; import ConfigServer from './ConfigServer'; -import useServerVersion from '../../hooks/useServerVersion' +import useServerVersion from '../../hooks/useServerVersion'; function Version() { const version = useServerVersion(); return ( - {`App: v${window.Actual.ACTUAL_VERSION} | Server: ${version}`} - + ); }