diff --git a/src/layouts/tpa-confirmation/tpa-confirmation.spec.js b/src/layouts/tpa-confirmation/tpa-confirmation.spec.js
index 3ac32ed9..5cc2eb2a 100644
--- a/src/layouts/tpa-confirmation/tpa-confirmation.spec.js
+++ b/src/layouts/tpa-confirmation/tpa-confirmation.spec.js
@@ -122,16 +122,6 @@ describe('TPAConfirmation.vue', () => {
// Assert
expect(bodyTwo.exists()).toBe(true);
});
- test('Should render Contact Carrier text', () => {
- // Arrange
- const { wrapper } = getMountedComponent({});
-
- // Act
- const contactCarrierText = wrapper.findComponent({ ref: 'contactCarrierText' });
-
- // Assert
- expect(contactCarrierText.exists()).toBe(true);
- });
test('Should render Order Details title', () => {
// Arrange
const { wrapper } = getMountedComponent({});
@@ -313,19 +303,6 @@ describe('TPAConfirmation.vue', () => {
});
});
});
- describe('setBailoutInfo', () => {
- test('setBailout method is called when routerLink clicked', async () => {
- // Arrange
- const { wrapper } = getMountedComponent({});
- const contactCarrierText = wrapper.get('#contactCarrierText');
-
- // Act
- await contactCarrierText.trigger('click');
-
- // Assert
- expect(wrapper.vm.mainStore.setBailout).toHaveBeenCalledWith(bailoutMessage.RequestCallback);
- });
- });
describe('Navigation', () => {
test('If Advanced flow, forward button action navigates to carrier URL', () => {
// Arrange
diff --git a/src/layouts/tpa-confirmation/tpa-confirmation.vue b/src/layouts/tpa-confirmation/tpa-confirmation.vue
index b36a2282..1e817d6b 100644
--- a/src/layouts/tpa-confirmation/tpa-confirmation.vue
+++ b/src/layouts/tpa-confirmation/tpa-confirmation.vue
@@ -35,13 +35,7 @@