mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-17 05:55:00 +08:00
Migrate CryptoStoreTooNewDialog to TypeScript
This commit is contained in:
parent
de95f3bc01
commit
e39baf3e23
@ -22,7 +22,11 @@ import { _t } from '../../../languageHandler';
|
|||||||
import SdkConfig from '../../../SdkConfig';
|
import SdkConfig from '../../../SdkConfig';
|
||||||
import Modal from '../../../Modal';
|
import Modal from '../../../Modal';
|
||||||
|
|
||||||
export default (props) => {
|
interface IProps {
|
||||||
|
onFinished: (success: boolean) => void;
|
||||||
|
}
|
||||||
|
|
||||||
|
export default (props: IProps) => {
|
||||||
const brand = SdkConfig.get().brand;
|
const brand = SdkConfig.get().brand;
|
||||||
|
|
||||||
const _onLogoutClicked = () => {
|
const _onLogoutClicked = () => {
|
||||||
@ -40,7 +44,7 @@ export default (props) => {
|
|||||||
onFinished: (doLogout) => {
|
onFinished: (doLogout) => {
|
||||||
if (doLogout) {
|
if (doLogout) {
|
||||||
dis.dispatch({action: 'logout'});
|
dis.dispatch({action: 'logout'});
|
||||||
props.onFinished();
|
props.onFinished(true);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
});
|
});
|
Loading…
Reference in New Issue
Block a user