diff --git a/src/components/forms/sponsor-general-form/add-extra-question-popup.js b/src/components/forms/sponsor-general-form/add-extra-question-popup.js index 4c0d4fa4f..37863163a 100644 --- a/src/components/forms/sponsor-general-form/add-extra-question-popup.js +++ b/src/components/forms/sponsor-general-form/add-extra-question-popup.js @@ -300,7 +300,9 @@ const AddSponsorExtraQuestionPopup = ({ - {T.translate("edit_sponsor.add_extra_question")} + {extraQuestion.id + ? T.translate("edit_sponsor.edit_extra_question") + : T.translate("edit_sponsor.add_extra_question")} handleClose()} sx={{ mr: 1 }}> diff --git a/src/i18n/en.json b/src/i18n/en.json index 8a04b78c8..4cdd5cbb1 100644 --- a/src/i18n/en.json +++ b/src/i18n/en.json @@ -2364,6 +2364,7 @@ "add_question": "Add Question", "no_extra_questions": "No extra questions found.", "add_extra_question": "Add Extra Question", + "edit_extra_question": "Edit Extra Question", "save_extra_question": "Save Extra Question", "question_type": "Question Type", "question_id": "Question Identifier",