Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Šimon Brandner 2021-07-02 17:25:30 +02:00
parent 7325abebd9
commit 426c79f47d
No known key found for this signature in database
GPG key ID: 9760693FDD98A790
3 changed files with 5 additions and 2 deletions

View file

@ -28,7 +28,7 @@ interface IProps {
onFinished: (success: boolean) => void;
}
export default (props: IProps) => {
const CryptoStoreTooNewDialog: React.FC<IProps> = (props: IProps) => {
const brand = SdkConfig.get().brand;
const _onLogoutClicked = () => {
@ -78,3 +78,5 @@ export default (props: IProps) => {
</DialogButtons>
</BaseDialog>);
};
export default CryptoStoreTooNewDialog;