ad19495702
Naomi comment websockets increase slow mode time to 5 seconds fix to prevent duplicate comments update livestream details fix channel pin electron boom fix rebase prune unused icons updating meme updating meme update livestream for naomi fix rebase DigitalCashNetwork remove electroboom pin Slavguns Joel So he can edit his claims add streamTypes param to claimTilesDiscover so following section can search for all types of content fix typo
21 lines
535 B
JavaScript
21 lines
535 B
JavaScript
// @flow
|
|
import React from 'react';
|
|
import { Modal } from 'modal/modal';
|
|
|
|
type Props = {
|
|
closeModal: () => void,
|
|
};
|
|
|
|
class ModalTransactionFailed extends React.PureComponent<Props> {
|
|
render() {
|
|
const { closeModal } = this.props;
|
|
|
|
return (
|
|
<Modal isOpen contentLabel={__('Transaction failed')} title={__('Transaction failed')} onConfirmed={closeModal}>
|
|
<p>{__('Sorry about that. Contact help@odysee.com if you continue to have issues.')}</p>
|
|
</Modal>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default ModalTransactionFailed;
|