fix: wrap store with storeToRefs wherever missing

Signed-off-by: Pranav C <pranavxc@gmail.com>
This commit is contained in:
Pranav C
2023-03-12 10:53:08 +05:30
parent d62b3d9419
commit 29a43aee10
29 changed files with 73 additions and 42 deletions

View File

@@ -19,6 +19,7 @@ import {
projectTitleValidator,
readFile,
ref,
storeToRefs,
useApi,
useI18n,
useNuxtApp,
@@ -33,7 +34,7 @@ const emit = defineEmits(['baseUpdated'])
const projectStore = useProject()
const { loadProject } = projectStore
const { project } = projectStore
const { project } = storeToRefs(projectStore)
const useForm = Form.useForm