From 320c8d2091afd01362fb23497a5c391acc259b94 Mon Sep 17 00:00:00 2001 From: "J. Ryan Stinnett" Date: Fri, 21 May 2021 13:10:50 +0100 Subject: [PATCH] Move function prop to bottom --- src/components/views/auth/InteractiveAuthEntryComponents.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/views/auth/InteractiveAuthEntryComponents.tsx b/src/components/views/auth/InteractiveAuthEntryComponents.tsx index 06263a026f..7b7ca0061f 100644 --- a/src/components/views/auth/InteractiveAuthEntryComponents.tsx +++ b/src/components/views/auth/InteractiveAuthEntryComponents.tsx @@ -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 {