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(); }