From 71a47f320c4601b1b06e2e657171a2ee88a9b79a Mon Sep 17 00:00:00 2001 From: Pramod Mahajan Date: Fri, 9 May 2025 15:13:04 +0530 Subject: [PATCH] added data props in confrima modal --- src/components/common/ConfirmModal.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/common/ConfirmModal.jsx b/src/components/common/ConfirmModal.jsx index 2a49e411..cadee1bd 100644 --- a/src/components/common/ConfirmModal.jsx +++ b/src/components/common/ConfirmModal.jsx @@ -1,6 +1,6 @@ import React, { useState } from 'react'; -const ConfirmModal = ({ type, onSubmit, onClose, message, loading ,header}) => { +const ConfirmModal = ({ type, onSubmit, onClose, message, loading ,header, paramData}) => { const TypeofIcon = (type) => { switch (type) { @@ -48,7 +48,7 @@ const ConfirmModal = ({ type, onSubmit, onClose, message, loading ,header}) => {