Move function prop to bottom

pull/21833/head
J. Ryan Stinnett 2021-05-21 13:10:50 +01:00
parent e4cf66f0e4
commit 320c8d2091
1 changed files with 1 additions and 1 deletions

View File

@ -106,11 +106,11 @@ interface IAuthEntryProps {
matrixClient: MatrixClient;
loginType: string;
authSessionId: string;
submitAuthDict: (auth: IAuthDict) => void;
errorText?: string;
// Is the auth logic currently waiting for something to happen?
busy?: boolean;
onPhaseChange: (phase: number) => void;
submitAuthDict: (auth: IAuthDict) => void;
}
interface IPasswordAuthEntryState {