fix: import usePageMeta for QuizSubmission

This commit is contained in:
Jannat Patel
2025-04-08 11:13:46 +05:30
parent 5d1673bad8
commit 8346ec8525
2 changed files with 2 additions and 2 deletions

View File

@@ -23,7 +23,6 @@ declare module 'vue' {
BatchCourses: typeof import('./src/components/BatchCourses.vue')['default']
BatchDashboard: typeof import('./src/components/BatchDashboard.vue')['default']
BatchFeedback: typeof import('./src/components/BatchFeedback.vue')['default']
BatchIcon: typeof import('./src/components/Icons/BatchIcon.vue')['default']
BatchOverlay: typeof import('./src/components/BatchOverlay.vue')['default']
BatchStudentProgress: typeof import('./src/components/Modals/BatchStudentProgress.vue')['default']
BatchStudents: typeof import('./src/components/BatchStudents.vue')['default']

View File

@@ -79,8 +79,9 @@ import {
FormControl,
Button,
Badge,
usePageMeta,
} from 'frappe-ui'
import { computed, onBeforeUnmount, onMounted, inject, usePageMeta } from 'vue'
import { computed, onBeforeUnmount, onMounted, inject } from 'vue'
import { useRouter } from 'vue-router'
import { showToast } from '@/utils'
import { sessionStore } from '@/stores/session'