File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
async-components/views/dialogs/security
components/views/dialogs/security Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -274,7 +274,7 @@ export default class CreateSecretStorageDialog extends React.PureComponent<IProp
274274 } ) ;
275275 } ;
276276
277- private doBootstrapUIAuth = async ( makeRequest : ( authData : any ) => Promise < void > ) : Promise < void > => {
277+ private doBootstrapUIAuth = async ( makeRequest : ( authData : any ) => Promise < { } > ) : Promise < void > => {
278278 if ( this . state . canUploadKeysWithPasswordOnly && this . state . accountPassword ) {
279279 await makeRequest ( {
280280 type : 'm.login.password' ,
Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ export default class CreateCrossSigningDialog extends React.PureComponent<IProps
9191 }
9292 }
9393
94- private doBootstrapUIAuth = async ( makeRequest : ( authData : any ) => Promise < void > ) : Promise < void > => {
94+ private doBootstrapUIAuth = async ( makeRequest : ( authData : any ) => Promise < { } > ) : Promise < void > => {
9595 if ( this . state . canUploadKeysWithPasswordOnly && this . state . accountPassword ) {
9696 await makeRequest ( {
9797 type : 'm.login.password' ,
You can’t perform that action at this time.
0 commit comments