diff --git a/src/layouts/provider-preference/provider-preference.vue b/src/layouts/provider-preference/provider-preference.vue
index 1e0a47c5..bf114007 100644
--- a/src/layouts/provider-preference/provider-preference.vue
+++ b/src/layouts/provider-preference/provider-preference.vue
@@ -21,10 +21,6 @@
ref="buttonMain"
variant="navigation"
buttonText="Schedule now"
- :class="
- (disableForwardAction || isForwardActionDisabled) &&
- 'form-test-invalid'
- "
@clickEvent="forwardButtonAction(options.SAFELITE)" />
@@ -38,16 +34,10 @@
class="mt-5"
cmsWidgetName="SiteFooterWidget"
:isForwardButtonHidden="true"
- @backClicked="navigateBack"
- @forwardClicked="forwardButtonAction" />
-
+ @backClicked="navigateBack" />
-
@@ -92,7 +82,6 @@ import textLink from '@/ux-components/text-link/text-link.vue';
import buttonMain from '@/ux-components/button-main/button-main.vue';
const options = { SAFELITE: 'SafeliteOption', TPA: 'TPAOption' };
-const RECAL_MODAL_REF_NAME = 'RecalModal';
const STEERING_MODAL_REF_NAME = 'StateSteeringModal';
const SHOP_PREFERENCE_MODAL_REF_NAME = 'ShopPreferenceDrawer';
const TPA_RECAL_MODAL_REF_NAME = 'TPARecalModal';
@@ -142,7 +131,6 @@ export default {
rules: {
optionRequired: globalRules.OPTION_REQUIRED
},
- RECAL_MODAL_REF_NAME,
STEERING_MODAL_REF_NAME,
SHOP_PREFERENCE_MODAL_REF_NAME,
TPA_RECAL_MODAL_REF_NAME,
@@ -199,13 +187,6 @@ export default {
return options;
}
},
- watch: {
- prefAnswers(newValue, oldValue) {
- if (newValue !== oldValue) {
- setupModalLink(this, RECAL_MODAL_REF_NAME);
- }
- }
- },
mounted() {
setupModalLinks(this);
const pageData = this.mainStore.pageData(issPageValues.PROVIDER_PREFERENCE);