1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-13 23:20:05 +00:00

chore(lint): fixed linting issues

This commit is contained in:
Yury Shkoda
2022-06-20 19:26:29 +03:00
parent 1596173dda
commit 489947bcae
59 changed files with 243 additions and 236 deletions

View File

@@ -2,7 +2,7 @@ export const parseSasViyaLog = (logResponse: { items: any[] }) => {
let log
try {
log = logResponse.items
? logResponse.items.map((i) => i.line).join('\n')
? logResponse.items.map(i => i.line).join('\n')
: JSON.stringify(logResponse)
} catch (e) {
console.error('An error has occurred while parsing the log response', e)