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

@@ -20,6 +20,7 @@ import {
projectTitleValidator,
readFile,
ref,
storeToRefs,
useApi,
useGlobal,
useI18n,
@@ -35,7 +36,7 @@ const { appInfo } = useGlobal()
const projectStore = useProject()
const { loadProject } = projectStore
const { project } = projectStore
const { project } = storeToRefs(projectStore)
const useForm = Form.useForm