Skip to content

Commit

Permalink
Fix runtime error
Browse files Browse the repository at this point in the history
  • Loading branch information
cp-jagruti-a committed Nov 24, 2023
1 parent 2f2a986 commit e73d90b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions nuxt-frontend/pages/jobs/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/>
<Career id="career" />
<FaqSection v-on:add-animation="handleAnimationOnScroll" />
<NewFooter ref="footersection" />
<NewFooter ref="footer" />
</div>
</template>

Expand Down Expand Up @@ -54,7 +54,7 @@ const NewFooter = defineAsyncComponent(() =>
const { $mixpanel } = useNuxtApp();
const perks = ref(null);
const footersection = ref(null);
const footer = ref(null);
const seoData = config.JOBS_SEO_META_DATA;
useSeoMeta({
Expand All @@ -69,15 +69,15 @@ useSeoMeta({
let event = "";
let events = {
perks: "view_perks_benefits",
footersection: "view_jobs_footer",
footer: "view_jobs_footer",
};
let elements;
onMounted(() => {
elements = ref({
perks: perks,
footersection: footersection,
footer: footer,
});
window.addEventListener("scroll", sendEvent);
$mixpanel.track("view_jobs_page");
Expand Down

0 comments on commit e73d90b

Please sign in to comment.