lbry-desktop/ui/js/modal/modalAuthFailure/view.jsx
Jeremy Kauffman 5bec6accc2 mostly done
refactor modals and settings, clean-up CHANGELOG
2017-08-18 17:47:30 -04:00

32 lines
754 B
JavaScript

import React from "react";
import { Modal } from "modal/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;