diff --git a/src/components/MyWallet/Popup/ConfirmNairaWithdraw.jsx b/src/components/MyWallet/Popup/ConfirmNairaWithdraw.jsx
index 0a7509c..38c2849 100644
--- a/src/components/MyWallet/Popup/ConfirmNairaWithdraw.jsx
+++ b/src/components/MyWallet/Popup/ConfirmNairaWithdraw.jsx
@@ -120,13 +120,20 @@ function ConfirmNairaWithdraw({
- {completeNairaWithdraw.show
- ? completeNairaWithdraw?.state?.internal_return >= 0
- ? "Transfer Success"
- : "Transfer Error"
- : `Withdraw from ${wallet.description} Wallet : ${
- wallet.symbol
- }${(wallet.amount * 0.01).toFixed(2)}`}
+ {completeNairaWithdraw.load ? (
+ "Confirming..."
+ ) : (
+ <>
+ {" "}
+ {completeNairaWithdraw.show
+ ? completeNairaWithdraw?.state?.internal_return >= 0
+ ? "Transfer Success"
+ : "Transfer Error"
+ : `Withdraw from ${wallet.description} Wallet : ${
+ wallet.symbol
+ }${(wallet.amount * 0.01).toFixed(2)}`}
+ >
+ )}