feat: rename lists to projects #2697

Closed
konrad wants to merge 53 commits from feature/rename-lists-to-projects into main
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 357f1cfc5c - Show all commits

View File

@ -95,7 +95,7 @@ export const useProjectStore = defineStore('project', () => {
}
async function createProject(project: IProject) {
const cancel = setModuleLoading(this, setIsLoading)
const cancel = setModuleLoading(setIsLoading)
const projectService = new ProjectService()
try {
@ -145,7 +145,7 @@ export const useProjectStore = defineStore('project', () => {
}
async function deleteProject(project: IProject) {
const cancel = setModuleLoading(this, setIsLoading)
const cancel = setModuleLoading(setIsLoading)
const projectService = new ProjectService()
try {