From 44ecf62758f51d752ec1b99121402e4bb177090a Mon Sep 17 00:00:00 2001 From: "J. Ryan Stinnett" Date: Fri, 21 May 2021 13:15:54 +0100 Subject: [PATCH] Add explicit member access --- .../views/auth/InteractiveAuthEntryComponents.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/views/auth/InteractiveAuthEntryComponents.tsx b/src/components/views/auth/InteractiveAuthEntryComponents.tsx index b56157491a..e819e1e59c 100644 --- a/src/components/views/auth/InteractiveAuthEntryComponents.tsx +++ b/src/components/views/auth/InteractiveAuthEntryComponents.tsx @@ -689,7 +689,7 @@ export class SSOAuthEntry extends React.Component { + public attemptFailed = () => { this.setState({ attemptFailed: true, }); @@ -704,7 +704,7 @@ export class SSOAuthEntry extends React.Component { + private onStartAuthClick = () => { // Note: We don't use PlatformPeg's startSsoAuth functions because we almost // certainly will need to open the thing in a new tab to avoid losing application // context. @@ -714,7 +714,7 @@ export class SSOAuthEntry extends React.Component { + private onConfirmClick = () => { this.props.submitAuthDict({}); }; @@ -792,7 +792,7 @@ export class FallbackAuthEntry extends React.Component { } } - focus = () => { + public focus = () => { if (this.fallbackButton.current) { this.fallbackButton.current.focus(); }