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 8807285 commit 3b93c8b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions nuxt-frontend/pages/android-app-development.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,12 @@
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";
const DevelopmentSection = defineAsyncComponent(() =>
import("@/components/android-app-development/DevelopmentSection.vue")
);
const CaseStudy = defineAsyncComponent(() =>
import("@/components/android-app-development/CaseStudySection.vue")
);
Expand Down Expand Up @@ -95,7 +96,7 @@ export default {
methods: {
sendEvent() {
const event = this.events[elementInViewPort(this.$refs)];
console.log(event)
console.log(event);
if (event && this.event !== event) {
this.event = event;
this.$mixpanel.track(event);
Expand Down

0 comments on commit 3b93c8b

Please sign in to comment.