From 3b50808cb0fffdae177d08e1864a99ba1d07cb97 Mon Sep 17 00:00:00 2001 From: "J. Ryan Stinnett" Date: Fri, 21 May 2021 13:11:33 +0100 Subject: [PATCH] Use any instead of object --- .../views/auth/InteractiveAuthEntryComponents.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/views/auth/InteractiveAuthEntryComponents.tsx b/src/components/views/auth/InteractiveAuthEntryComponents.tsx index 7b7ca0061f..b56157491a 100644 --- a/src/components/views/auth/InteractiveAuthEntryComponents.tsx +++ b/src/components/views/auth/InteractiveAuthEntryComponents.tsx @@ -89,14 +89,14 @@ interface IAuthDict { // TODO: Remove `user` once servers support proper UIA // See https://github.com/vector-im/element-web/issues/10312 user?: string; - identifier?: object; + identifier?: any; password?: string; response?: string; // TODO: Remove `threepid_creds` once servers support proper UIA // See https://github.com/vector-im/element-web/issues/10312 // See https://github.com/matrix-org/matrix-doc/issues/2220 - threepid_creds?: object; - threepidCreds?: object; + threepid_creds?: any; + threepidCreds?: any; } /* eslint-enable camelcase */