From c08e27a7728d93f54e68875549f7d8504d56ef96 Mon Sep 17 00:00:00 2001 From: Jack Mallers Date: Sun, 1 Oct 2017 17:09:01 -0500 Subject: [PATCH] fix(payment): accidentally put an s at the end of dispatch --- app/reducers/payment.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/reducers/payment.js b/app/reducers/payment.js index cc3edfcd..5666b42a 100644 --- a/app/reducers/payment.js +++ b/app/reducers/payment.js @@ -69,7 +69,7 @@ export const payInvoice = paymentRequest => (dispatch) => { // TODO: Add payment to state, not a total re-fetch export const paymentSuccessful = () => (dispatch) => { // Dispatch successful payment to stop loading screen - dispatchs(paymentSuccessfull()) + dispatch(paymentSuccessfull()) // Close the form modal once the payment was succesful dispatch(setFormType(null))