diff --git a/vue-frontend/src/components/services/WhatWeOfferDesktop.vue b/vue-frontend/src/components/services/WhatWeOfferDesktop.vue index 01cf90232..243114527 100644 --- a/vue-frontend/src/components/services/WhatWeOfferDesktop.vue +++ b/vue-frontend/src/components/services/WhatWeOfferDesktop.vue @@ -133,7 +133,7 @@ export default { // check which element is in viewport const elementIdx = elementInViewPort(this.$refs); const index = parseInt( - elementIdx ? elementIdx.charAt(elementIdx.length - 1) : 0 + elementIdx ? elementIdx.charAt(elementIdx.length - 1) : 0, ); if (this.prevIndex != index) { diff --git a/vue-frontend/src/pages/android-app-development.vue b/vue-frontend/src/pages/android-app-development.vue index b00f10cb0..50f013435 100644 --- a/vue-frontend/src/pages/android-app-development.vue +++ b/vue-frontend/src/pages/android-app-development.vue @@ -30,29 +30,29 @@ import { elementInViewPort } from "@/utils.js"; import LandingSection from "@/components/android-app-development/LandingSection.vue"; import DevelopmentSection from "@/components/android-app-development/DevelopmentSection.vue"; const CaseStudy = defineAsyncComponent(() => - import("@/components/android-app-development/CaseStudySection.vue") + import("@/components/android-app-development/CaseStudySection.vue"), ); const SuccessStorySection = defineAsyncComponent(() => - import("@/components/android-app-development/SuccessStorySection.vue") + import("@/components/android-app-development/SuccessStorySection.vue"), ); const FaqSection = defineAsyncComponent(() => - import("@/components/android-app-development/FaqSection.vue") + import("@/components/android-app-development/FaqSection.vue"), ); const PinkCtaSection = defineAsyncComponent(() => - import("@/components/android-app-development/PinkCtaSection.vue") + import("@/components/android-app-development/PinkCtaSection.vue"), ); const CtaSection = defineAsyncComponent(() => - import("@/components/android-app-development/CtaSection.vue") + import("@/components/android-app-development/CtaSection.vue"), ); const BlackCtaSection = defineAsyncComponent(() => - import("@/components/android-app-development/BlackCtaSection.vue") + import("@/components/android-app-development/BlackCtaSection.vue"), ); const BlogSection = defineAsyncComponent(() => - import("@/components/android-app-development/BlogSection.vue") + import("@/components/android-app-development/BlogSection.vue"), ); const NewFooter = defineAsyncComponent(() => - import("@/components/partials/NewFooter.vue") + import("@/components/partials/NewFooter.vue"), ); export default {