Browse Source

fix(nc-gui): unexpected extra parameter

pull/5307/head
Wing-Kam Wong 1 year ago
parent
commit
9ab91b3f55
  1. 2
      packages/nc-gui/store/project.ts

2
packages/nc-gui/store/project.ts

@ -98,7 +98,7 @@ export const useProject = defineStore('projectStore', () => {
async function loadProjectMetaInfo(force?: boolean) {
if (!projectMetaInfo.value || force) {
projectMetaInfo.value = await api.project.metaGet(project.value.id!, {}, {})
projectMetaInfo.value = await api.project.metaGet(project.value.id!, {})
}
}

Loading…
Cancel
Save