1
0
mirror of https://github.com/sasjs/server.git synced 2026-01-14 17:30:05 +00:00

fix(root-package.json): lint:fix command fixed in root package json

This commit is contained in:
2021-10-25 06:31:04 +00:00
parent 0fb4301966
commit ec6333f6aa
4 changed files with 19 additions and 14 deletions

View File

@@ -25,9 +25,11 @@ const Main = (props: any) => {
.get(`/SASjsApi/files?filePath=${props.selectedFilePath}`)
.then((res: any) => {
setFileContent(res.data.fileContent)
}).catch((err) => {
})
.catch((err) => {
console.log(err)
}).finally(() => {
})
.finally(() => {
setIsLoading(false)
})
}
@@ -46,9 +48,11 @@ const Main = (props: any) => {
})
.then((res) => {
setEditMode(false)
}).catch((err) => {
})
.catch((err) => {
console.log(err)
}).finally(() => {
})
.finally(() => {
setIsLoading(false)
})
}