Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9ea3963239 | |||
| df4489c6f2 | |||
| 37185812b4 | |||
| eb3e78244d | |||
| b302d7ba57 | |||
| d6c16169d9 | |||
| 57129da0bd | |||
| c8331c51cf | |||
| 3b7618702b |
@@ -46,7 +46,7 @@ REACT_APP_GOOGLE_REDIRECT_URL=http://localhost:9082/login/auth/
|
||||
REACT_APP_FACEBOOK_CLIENT_ID2=390204307987009
|
||||
REACT_APP_FACEBOOK_CLIENT_SECRET2=19f778e312f2ab96d147bacb612910c2
|
||||
|
||||
#developenet Account
|
||||
#developement Account
|
||||
REACT_APP_FACEBOOK_CLIENT_ID=677857427521030
|
||||
REACT_APP_FACEBOOK_CLIENT_SECRET=4801375f22072d8a75f64483fdd89829
|
||||
|
||||
|
||||
@@ -432,10 +432,12 @@ export default function Login() {
|
||||
}
|
||||
{/* END of login component */}
|
||||
|
||||
{loginType == "full" &&
|
||||
<div className="pt-5 text-[#181c32] text-center font-semibold text-[13.975px] leading-[20.9625px]">
|
||||
This site is protected by hCaptcha and the our Privacy Policy
|
||||
and Terms of Service apply.
|
||||
</div>
|
||||
}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -113,7 +113,7 @@ function ConfirmAddFund({
|
||||
|
||||
const config = {
|
||||
public_key: process.env.REACT_APP_FLUTTERWAVE_APIKEY,
|
||||
tx_ref: Date.now(),
|
||||
tx_ref: __confirmData?.credit_reference,
|
||||
currency: "NGN",
|
||||
amount: Number(__confirmData.amount),
|
||||
payment_options: "card,mobilemoney,ussd",
|
||||
@@ -128,7 +128,7 @@ function ConfirmAddFund({
|
||||
logo: "https://www.wrenchboard.com/assets/images/wrench-500-500-icon.png",
|
||||
},
|
||||
};
|
||||
|
||||
//debugger;
|
||||
const fwConfig = {
|
||||
...config,
|
||||
text: "Proceed",
|
||||
@@ -144,7 +144,7 @@ function ConfirmAddFund({
|
||||
const reqData = { amount: Number(__confirmData?.amount), currency: "NGN" };
|
||||
console.log("**** onSuccessPayment **** THIS WAS REACHED");
|
||||
apiURL
|
||||
.startTopUp(reqData)
|
||||
.resultTopUp(reqData)
|
||||
.then((res) => {
|
||||
if (res.data.internal_return < 0) {
|
||||
setRequestStatus({
|
||||
@@ -302,6 +302,8 @@ function ConfirmAddFund({
|
||||
}));
|
||||
}
|
||||
|
||||
console.log(__confirmData)
|
||||
|
||||
return (
|
||||
<div className="content-wrapper w-full h-[32rem]">
|
||||
<div className="w-full mb-10">
|
||||
|
||||
@@ -577,17 +577,31 @@ class usersService {
|
||||
return this.postAuxEnd("/familymanage", postData);
|
||||
}
|
||||
|
||||
//END POINT CALL FOR ACCOUNT TOP
|
||||
// END POINT CALL FOR ACCOUNT TOP
|
||||
startTopUp(post) {
|
||||
alert("WHY ARE WE CALLING THIS ?");
|
||||
// var postData = {
|
||||
// uid: localStorage.getItem("uid"),
|
||||
// member_id: localStorage.getItem("member_id"),
|
||||
// sessionid: localStorage.getItem("session_token"),
|
||||
// action: 11062,
|
||||
// ...post,
|
||||
// };
|
||||
// console.log("starttopup",postData);
|
||||
// return this.postAuxEnd("/starttopup", postData);
|
||||
}
|
||||
|
||||
|
||||
resultTopUp(post) {
|
||||
var postData = {
|
||||
uid: localStorage.getItem("uid"),
|
||||
member_id: localStorage.getItem("member_id"),
|
||||
sessionid: localStorage.getItem("session_token"),
|
||||
action: 11062,
|
||||
action: 11061,
|
||||
...post,
|
||||
};
|
||||
console.log("starttopup",postData);
|
||||
return this.postAuxEnd("/starttopup", postData);
|
||||
console.log("topupresult",postData);
|
||||
return this.postAuxEnd("/topupresult", postData);
|
||||
}
|
||||
|
||||
//END POINT CALL FOR SENDING REFERRAL MESSAGE
|
||||
|
||||
Reference in New Issue
Block a user