diff --git a/airbyte-webapp/src/components/common/ConfirmationModal/ConfirmationModal.tsx b/airbyte-webapp/src/components/common/ConfirmationModal/ConfirmationModal.tsx index 90c3d3f27b880..ee1bcd8312118 100644 --- a/airbyte-webapp/src/components/common/ConfirmationModal/ConfirmationModal.tsx +++ b/airbyte-webapp/src/components/common/ConfirmationModal/ConfirmationModal.tsx @@ -11,6 +11,7 @@ export interface ConfirmationModalProps { onClose: () => void; title: string; text: string; + textValues?: Record; submitButtonText: string; onSubmit: () => void; submitButtonDataId?: string; @@ -21,6 +22,7 @@ export const ConfirmationModal: React.FC = ({ onClose, title, text, + textValues, onSubmit, submitButtonText, submitButtonDataId, @@ -32,7 +34,7 @@ export const ConfirmationModal: React.FC = ({ return ( } testId="confirmationModal">
- +