revert(donate): add the live key, fix setup breaks

This commit is contained in:
Mrugesh Mohapatra
2019-02-06 01:57:41 +05:30
committed by Stuart Taylor
parent 7ce2fe78f2
commit 8276d477a6

View File

@ -1,4 +1,3 @@
/* global STRIPE_PUBLIC_KEY */
import React, { Component } from 'react'; import React, { Component } from 'react';
import PropTypes from 'prop-types'; import PropTypes from 'prop-types';
import { bindActionCreators } from 'redux'; import { bindActionCreators } from 'redux';
@ -39,7 +38,7 @@ const propTypes = {
show: PropTypes.bool show: PropTypes.bool
}; };
const stripeKey = STRIPE_PUBLIC_KEY; const stripeKey = 'pk_live_E6Z6xPM8pEsJziHW905zpAvF';
class DonationModal extends Component { class DonationModal extends Component {
constructor(...props) { constructor(...props) {