diff --git a/src/constants/endpoints.js b/src/constants/endpoints.js
index 0a67c8c96..aaf221bd2 100644
--- a/src/constants/endpoints.js
+++ b/src/constants/endpoints.js
@@ -78,6 +78,10 @@ const endpoints = {
url: "/parts/api/v1/parts/mobile-fee",
method: "GET",
},
+ GetServiceabilityDetails: {
+ url: "/location/api/v1/location/serviceability-details",
+ method: "GET",
+ },
GetSupportingItems: {
url: "/parts/api/v1/parts/supporting-items",
method: "POST",
diff --git a/src/constants/store-actions.js b/src/constants/store-actions.js
index 2b7033e10..3fc664413 100644
--- a/src/constants/store-actions.js
+++ b/src/constants/store-actions.js
@@ -29,6 +29,7 @@ const storeActions = {
GET_PART_FROM_CAPABILITY_QUESTION_ANSWER: "getPartFromCapabilityQuestionAnswer",
GET_MOLDING_QUESTIONS: "getMoldingQuestions",
GET_MOBILE_FEE_PART: "getMobileFeePart",
+ GET_SERVICEABILITY_DETAILS: "getServiceabilityDetails",
SAVE_SESSION: "saveSession",
LOAD_SESSION: "loadSession",
UPDATE_STORE_WITH_SAVE_SESSION_RESPONSE: "updateStoreWithSaveSessionResponse",
diff --git a/src/digital-components/modal/modal.spec.js b/src/digital-components/modal/modal.spec.js
index a948fe99a..e4d8692d4 100644
--- a/src/digital-components/modal/modal.spec.js
+++ b/src/digital-components/modal/modal.spec.js
@@ -92,7 +92,7 @@ describe("modal.vue", () => {
wrapper.vm.resetButtonStyle = resetButtonStyle;
// Act
- const buttonMain = wrapper.findComponent({ ref: "buttonMain" });
+ const buttonMain = wrapper.findComponent({ ref: "modalButtonMain" });
await buttonMain.trigger("click-event");
// Assert
@@ -124,7 +124,7 @@ describe("modal.vue", () => {
wrapper.vm.resetButtonStyle = resetButtonStyle;
// Act
- const buttonMain = wrapper.findComponent({ ref: "buttonMain" });
+ const buttonMain = wrapper.findComponent({ ref: "modalButtonMain" });
await buttonMain.trigger("click-event");
// Assert
diff --git a/src/digital-components/modal/modal.vue b/src/digital-components/modal/modal.vue
index 56b6c74d6..ba7e60eb6 100644
--- a/src/digital-components/modal/modal.vue
+++ b/src/digital-components/modal/modal.vue
@@ -26,10 +26,10 @@