aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/auth/AuthReleaseNotesScreen.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/containers/auth/AuthReleaseNotesScreen.tsx')
-rw-r--r--src/containers/auth/AuthReleaseNotesScreen.tsx12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/containers/auth/AuthReleaseNotesScreen.tsx b/src/containers/auth/AuthReleaseNotesScreen.tsx
index c717529fa..c9d2286e1 100644
--- a/src/containers/auth/AuthReleaseNotesScreen.tsx
+++ b/src/containers/auth/AuthReleaseNotesScreen.tsx
@@ -1,7 +1,7 @@
1import { Component } from 'react'; 1import { Component } from 'react';
2import { inject, observer } from 'mobx-react'; 2import { inject, observer } from 'mobx-react';
3 3
4import { defineMessages, injectIntl } from 'react-intl'; 4import { IntlShape, defineMessages, injectIntl } from 'react-intl';
5import Markdown from 'markdown-to-jsx'; 5import Markdown from 'markdown-to-jsx';
6import { mdiArrowLeftCircle } from '@mdi/js'; 6import { mdiArrowLeftCircle } from '@mdi/js';
7import { openExternalUrl } from '../../helpers/url-helpers'; 7import { openExternalUrl } from '../../helpers/url-helpers';
@@ -20,14 +20,14 @@ const messages = defineMessages({
20}); 20});
21 21
22interface IProps { 22interface IProps {
23 intl: any; 23 intl: IntlShape;
24} 24}
25 25
26class AuthReleaseNotesScreen extends Component<IProps> { 26interface IState {
27 state = { 27 data: string;
28 data: '', 28}
29 };
30 29
30class AuthReleaseNotesScreen extends Component<IProps, IState> {
31 constructor(props) { 31 constructor(props) {
32 super(props); 32 super(props);
33 33