Add missing types

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

View File

@ -127,7 +127,7 @@ export default class InteractiveAuthDialog extends React.Component<IProps, IStat
}
};
private onUpdateStagePhase = (newStage, newPhase): void => {
private onUpdateStagePhase = (newStage: number, newPhase: number): void => {
// We copy the stage and stage phase params into state for title selection in render()
this.setState({ uiaStage: newStage, uiaStagePhase: newPhase });
};