fixed key"

This commit is contained in:
ntr 2019-09-02 18:57:46 +10:00
parent 7f882d58e3
commit bb5e4d5728
3 changed files with 5 additions and 6 deletions

View File

@ -30,7 +30,7 @@ document.fonts.load('16pt "Jura"').then(() => {
const App = () => (
<Provider store={store}>
<StripeProvider apiKey="pk_live_fQGrL1uWww2ot8W1G7vTySAv004ygmnMX">
<StripeProvider apiKey="pk_live_fQGrL1uWww2ot8W1G7vTySAv004ygmnMXq">
<Mnml />
</StripeProvider>
</Provider>

View File

@ -9,8 +9,8 @@ function BitsBtn(args) {
function subscribeClick() {
stripe.redirectToCheckout({
items: [{ plan: 'prod_Fjdt7mYvzXkNBN', quantity: 1 }],
successUrl: 'http://mnml.gg',
cancelUrl: 'http://mnml.gg',
successUrl: 'https://mnml.gg',
cancelUrl: 'https://mnml.gg',
clientReferenceId: account.id,
});
}
@ -18,8 +18,8 @@ function BitsBtn(args) {
function bitsClick() {
stripe.redirectToCheckout({
items: [{ sku: 'sku_Fjdu7zOy3sLGc5', quantity: 1 }],
successUrl: 'http://mnml.gg',
cancelUrl: 'http://mnml.gg',
successUrl: 'https://mnml.gg',
cancelUrl: 'https://mnml.gg',
clientReferenceId: account.id,
});
}

View File

@ -6,7 +6,6 @@ upstream mnml_ws {
server 127.0.0.1:40055;
}
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;