Skip to content

Commit

Permalink
Fix unwanted runtime errors on services and android page
Browse files Browse the repository at this point in the history
  • Loading branch information
cp-jagruti-a committed Nov 21, 2023
1 parent cc74cb6 commit 4df7957
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions nuxt-frontend/pages/android-app-development.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<div class="xll:bg-black-core/[90%] 3xl:bg-white" ref="landing">
<LandingSection />
</div>

<CaseStudy />
<DevelopmentSection />
<CaseStudy ref="casestudy" />
<PinkCtaSection class="hidden lg:block" />
<SuccessStorySection />
<BlackCtaSection />
Expand All @@ -20,6 +20,7 @@
import Header from "@/components/partials/NewHeader.vue";
import config from "@/config.js";
import LandingSection from "@/components/android-app-development/LandingSection.vue";
import DevelopmentSection from "@/components/android-app-development/DevelopmentSection.vue";
import { elementInViewPort } from "@/utils.js";
import { defineAsyncComponent } from "vue";
Expand Down Expand Up @@ -50,6 +51,7 @@ const NewFooter = defineAsyncComponent(() =>
const { $mixpanel } = useNuxtApp();
const landingsection = ref(null);
const developmentsection = ref(null);
const casestudy = ref(null);
const successstorysection = ref(null);
const pinkctasection = ref(null);
Expand All @@ -71,6 +73,7 @@ useSeoMeta({
let event = "";
let events = {
landing: "view_android_development_landing_section",
casestudy: "view_android_development_middle_sections",
footer: "view_android_development_footer",
};
Expand All @@ -79,6 +82,7 @@ let elements;
onMounted(() => {
elements = ref({
landingsection: landingsection,
developmentsection: developmentsection,
casestudy: casestudy,
successstorysection: successstorysection,
pinkctasection: pinkctasection,
Expand Down

0 comments on commit 4df7957

Please sign in to comment.