diff --git a/src/iss-components/site-footer/site-footer.vue b/src/iss-components/site-footer/site-footer.vue
index b73ab67a..d32d3313 100644
--- a/src/iss-components/site-footer/site-footer.vue
+++ b/src/iss-components/site-footer/site-footer.vue
@@ -24,8 +24,6 @@
"
:aria-disabled="disableForwardAction || isForwardActionDisabled"
:isDisabled="disableForwardAction || isForwardActionDisabled"
- data-bs-target="#footerModal"
- data-bs-dismiss="modal"
data-test-id="site-footer-main-button"
@clickEvent="buttonClick" />
@@ -36,8 +34,6 @@
linkType="navigation"
:text="backLink"
href="javascript:void(0)"
- data-bs-target="#footerModal"
- data-bs-dismiss="modal"
data-test-id="site-footer-back-button"
@clickEvent="linkClick" />
diff --git a/src/iss-components/site-header/menu-modal/menu-modal.spec.js b/src/iss-components/site-header/menu-modal/menu-modal.spec.js
deleted file mode 100644
index 9c0015cf..00000000
--- a/src/iss-components/site-header/menu-modal/menu-modal.spec.js
+++ /dev/null
@@ -1,50 +0,0 @@
-import { mount, shallowMount } from '@vue/test-utils';
-import menuModal from '@/iss-components/site-header/menu-modal/menu-modal.vue';
-
-describe('menu-modal.vue', () => {
- it('Should return text Footer Navigation', async () => {
- // Act
- const wrapper = shallowMount(menuModal);
-
- // Assert
- const footerModalLabel = wrapper.find('h5');
-
- // Expect
- expect(footerModalLabel.text()).toContain('Footer Navigation');
- });
-
- it('Should return footer text as Safelite Group', async () => {
- // Act
- const wrapper = shallowMount(menuModal);
-
- // Assert
- const modalFooter = wrapper.find('div.modal-footer');
-
- // Expect
- expect(modalFooter.text()).toContain('Safelite Group');
- });
-
- it('Should return Terms of use text link text', async () => {
- // Act
- const wrapper = shallowMount(menuModal);
-
- // Expect
- expect(wrapper.html()).toContain('Terms of service');
- });
-
- it('Should return "Your privacy choices" text link text', async () => {
- // Act
- const wrapper = mount(menuModal);
-
- // Expect
- expect(wrapper.html()).toContain('Your privacy choices');
- });
-
- it('Should return Warranty text link text', async () => {
- // Act
- const wrapper = shallowMount(menuModal);
-
- // Expect
- expect(wrapper.html()).toContain('Warranty');
- });
-});
diff --git a/src/iss-components/site-header/menu-modal/menu-modal.vue b/src/iss-components/site-header/menu-modal/menu-modal.vue
deleted file mode 100644
index 0abfb855..00000000
--- a/src/iss-components/site-header/menu-modal/menu-modal.vue
+++ /dev/null
@@ -1,232 +0,0 @@
-
-
-
-
-
-
-
-
-
-