Skip to content

Commit

Permalink
updated lint checker in async workbench
Browse files Browse the repository at this point in the history
Signed-off-by: sumukhswamy <[email protected]>
  • Loading branch information
sumukhswamy committed Apr 25, 2024
1 parent 75e01b3 commit 856bbab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions common/utils/async_query_helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const executeAsyncQuery = (
query: {},
pollingCallback: PollingCallback,
dataSourceMDSId?: string,
onErrorCallback?: (errorMessage: string) => void,
onErrorCallback?: (errorMessage: string) => void
) => {
let jobId: string | undefined;
let isQueryFulfilled = false;
Expand All @@ -43,8 +43,8 @@ export const executeAsyncQuery = (
sessionId: getAsyncSessionId(currentDataSource) ?? undefined,
}),
query: {
dataSourceMDSId: dataSourceMDSId
}
dataSourceMDSId: dataSourceMDSId,

Check failure on line 46 in common/utils/async_query_helpers.ts

View workflow job for this annotation

GitHub Actions / Lint

Expected property shorthand
},
})
.then((res) => {
const responseData = res.data.resp;
Expand Down

0 comments on commit 856bbab

Please sign in to comment.