Completed conversion to popup

This commit was merged in pull request #288.
This commit is contained in:
2023-07-10 23:21:59 +01:00
parent d274a5c56a
commit cc22e1a458
10 changed files with 819 additions and 586 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ export default function WalletBox({ wallet, coupon, payment }) {
) : wallet.data.length ? (
wallet.data.map((item, index) => (
<div className="lg:w-1/2 h-full mb-10 lg:mb-0">
<WalletItemCard walletItem={item} paymentHistory={payment} />
<WalletItemCard walletItem={item} payment={payment} />
</div>
))
) : null}