1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-07-28 15:22:05 +03:00

WIP minimize

This commit is contained in:
Jason Robinson
2021-01-14 12:20:42 +02:00
parent d4a58bdb2a
commit d6af5b3bbd
5 changed files with 60 additions and 22 deletions

View File

@ -20,7 +20,7 @@ import {
IconizedContextMenuOptionList,
} from "../views/context_menus/IconizedContextMenu";
import { _t } from "../../languageHandler";
import { OwnProfileStore } from "../../stores/OwnProfileStore";
import { HostSignupStore } from "../../stores/HostSignupStore";
interface IProps {}
@ -28,7 +28,7 @@ interface IState {}
export default class HostSignupAction extends React.PureComponent<IProps, IState> {
private openDialog = async () => {
await OwnProfileStore.instance.setHostSignupActive(true);
await HostSignupStore.instance.setHostSignupActive(true);
}
public render(): React.ReactNode {