Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Remove protected method
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
  • Loading branch information
t3chguy committed Aug 16, 2024
1 parent fc8db6b commit 8cf60e0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -952,7 +952,7 @@ export class FallbackAuthEntry<T = {}> extends React.Component<IAuthEntryProps &
this.popupWindow = window.open(url, "_blank");
};

protected onReceiveMessage = (event: MessageEvent): void => {
private onReceiveMessage = (event: MessageEvent): void => {
if (event.data === "authDone" && event.source === this.popupWindow) {
this.props.submitAuthDict({});
}
Expand Down

0 comments on commit 8cf60e0

Please sign in to comment.