Skip to content
Snippets Groups Projects
Commit f3ad0e75 authored by mattwire's avatar mattwire
Browse files

Fix syntax

parent 41db34a6
No related branches found
No related tags found
No related merge requests found
......@@ -272,7 +272,7 @@
}
}
})
.fail(stripePaymentIntentProcessFail(paymentIntentProcessResponse));
.fail(function(object) { stripePaymentIntentProcessFail(object); });
}
}
});
......@@ -313,7 +313,7 @@
// From here the on 'paymentmethod' of the paymentRequest handles completion/failure
}
})
.fail(stripePaymentIntentProcessFail(paymentIntentProcessResponse));
.fail(function(object) { stripePaymentIntentProcessFail(object); });
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment