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:
@@ -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)
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user