still testing

This commit is contained in:
2023-07-31 14:46:29 +01:00
parent f543a2d893
commit b1feb0438a
3 changed files with 20 additions and 17 deletions
@@ -1,7 +1,7 @@
import React from "react";
function CompleteConfirmCredit({ onClose, confirmCredit }) {
const { data } = confirmCredit
const { data } = confirmCredit;
return (
<div className="logout-modal-body w-full flex flex-col items-center">
<div className="content-wrapper w-full h-[32rem]">
@@ -17,7 +17,8 @@ function CompleteConfirmCredit({ onClose, confirmCredit }) {
>
{/* Success Icon for now */}
<div className="flex items-center w-full justify-center">
{data?.result == "Charge success" ? (
{data?.result == "Charge success" ||
data?.return_status == "successful" ? (
<svg
xmlns="http://www.w3.org/2000/svg"
width="100"
@@ -55,7 +56,8 @@ function CompleteConfirmCredit({ onClose, confirmCredit }) {
<div className={`flex items-center`}>
<h1 className="text-xl font-semibold text-dark-gray dark:text-white tracking-tighter my-1">
{data?.result == "Charge success"
{data?.result == "Charge success" ||
data?.return_status == "successful"
? "Credit was Successful!"
: "Credit was Unsuccessful"}
</h1>