diff --git a/webapp/components/PageFooter/PageFooter.spec.js b/webapp/components/PageFooter/PageFooter.spec.js index 02e788737..a7349496b 100644 --- a/webapp/components/PageFooter/PageFooter.spec.js +++ b/webapp/components/PageFooter/PageFooter.spec.js @@ -118,11 +118,15 @@ describe('PageFooter.vue', () => { }) it('renders TERMS_AND_CONDITIONS as "a" tag link', () => { - expect(wrapper.find(`a[href="https://ocelot.social/TERMS_AND_CONDITIONS"]`).exists()).toBeTruthy() + expect( + wrapper.find(`a[href="https://ocelot.social/TERMS_AND_CONDITIONS"]`).exists(), + ).toBeTruthy() }) it('renders CODE_OF_CONDUCT as "a" tag link', () => { - expect(wrapper.find(`a[href="https://ocelot.social/CODE_OF_CONDUCT"]`).exists()).toBeTruthy() + expect( + wrapper.find(`a[href="https://ocelot.social/CODE_OF_CONDUCT"]`).exists(), + ).toBeTruthy() }) it('renders DATA_PRIVACY as "a" tag link', () => { diff --git a/webapp/components/PageFooter/PageFooter.vue b/webapp/components/PageFooter/PageFooter.vue index ab7ab576b..6bf049b05 100644 --- a/webapp/components/PageFooter/PageFooter.vue +++ b/webapp/components/PageFooter/PageFooter.vue @@ -1,7 +1,11 @@