From a4af2870b41bc47e1ddd6fda6b0569e9305cc12f Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Wed, 19 Jun 2024 09:50:53 +0100 Subject: [PATCH] Remove unused state fields in qr oidc (#12588) * Dummy PR to Netlify https://github.com/matrix-org/matrix-js-sdk/pull/4233 Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Remove unused state field Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Discard changes to .prettierignore --------- Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- src/components/views/auth/LoginWithQR.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/components/views/auth/LoginWithQR.tsx b/src/components/views/auth/LoginWithQR.tsx index 4f97122370..dc0d61ccfb 100644 --- a/src/components/views/auth/LoginWithQR.tsx +++ b/src/components/views/auth/LoginWithQR.tsx @@ -59,7 +59,6 @@ interface IState { checkCode?: string; failureReason?: FailureReason; lastScannedCode?: Buffer; - homeserverBaseUrl?: string; } export enum LoginWithQRFailureReason { @@ -312,7 +311,6 @@ export default class LoginWithQR extends React.Component { failureReason: undefined, userCode: undefined, checkCode: undefined, - homeserverBaseUrl: undefined, lastScannedCode: undefined, mediaPermissionError: false, });