Fix types

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
pull/21833/head
Šimon Brandner 2021-09-10 19:12:33 +02:00
parent 52d203dd8e
commit 0efd599014
No known key found for this signature in database
GPG Key ID: 55C211A1226CB17D
1 changed files with 3 additions and 3 deletions

View File

@ -73,8 +73,8 @@ interface IState {
authError: Error; authError: Error;
// See _onUpdateStagePhase() // See _onUpdateStagePhase()
uiaStage: number; uiaStage: number | string;
uiaStagePhase: number; uiaStagePhase: number | string;
} }
@replaceableComponent("views.dialogs.InteractiveAuthDialog") @replaceableComponent("views.dialogs.InteractiveAuthDialog")
@ -127,7 +127,7 @@ export default class InteractiveAuthDialog extends React.Component<IProps, IStat
} }
}; };
private onUpdateStagePhase = (newStage: number, newPhase: number): void => { private onUpdateStagePhase = (newStage: string | number, newPhase: string | number): void => {
// We copy the stage and stage phase params into state for title selection in render() // We copy the stage and stage phase params into state for title selection in render()
this.setState({ uiaStage: newStage, uiaStagePhase: newPhase }); this.setState({ uiaStage: newStage, uiaStagePhase: newPhase });
}; };