25 lines
695 B
JavaScript
25 lines
695 B
JavaScript
import React from "react";
|
|
import { Modal } from "component/modal";
|
|
|
|
class ModalAuthFailure extends React.PureComponent {
|
|
render() {
|
|
const { close } = this.props;
|
|
|
|
return (
|
|
<Modal
|
|
isOpen={true}
|
|
contentLabel={__("Unable to Authenticate")}
|
|
type="confirm"
|
|
confirmButtonLabel={__("Reload")}
|
|
abortButtonLabel={__("Continue")}
|
|
onConfirmed={() => { window.location.reload() }}
|
|
onAborted={close}
|
|
>
|
|
<h3>{__("Authentication Failure")}</h3>
|
|
<p>{__("If reloading does not fix this, or you see this at every start up, please email help@lbry.io.")}</p>
|
|
</Modal>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default ModalAuthFailure;
|