refactor: remove change notes link
Release note publishing is currently in flux. As such, there is no determinate location to link to.
This commit is contained in:
parent
0ab294b50e
commit
c171597c7b
1 changed files with 4 additions and 4 deletions
|
@ -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 (
|
||||
<ExternalLink
|
||||
<Text
|
||||
style={{
|
||||
position: 'absolute',
|
||||
bottom: 0,
|
||||
|
@ -36,7 +36,7 @@ function Version() {
|
|||
href={'https://actualbudget.com/blog/' + window.Actual.ACTUAL_VERSION}
|
||||
>
|
||||
{`App: v${window.Actual.ACTUAL_VERSION} | Server: ${version}`}
|
||||
</ExternalLink>
|
||||
</Text>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue