Skip to content

Commit

Permalink
remove console log
Browse files Browse the repository at this point in the history
Signed-off-by: Shenoy Pratik <[email protected]>
  • Loading branch information
ps48 committed Oct 5, 2023
1 parent 12ad8a3 commit 63e69a6
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,13 @@ export const IndexTypeSelector = ({
};
getJobId(query, http, (id: string) => {
pollQueryStatus(id, http, (data: any[]) => {
console.log('data', data);
const dataTableFields: DataTableFieldsType[] = data
.filter((row) => !row[0].startsWith('#'))
.map((row, index) => ({
id: `${idPrefix}${index + 1}`,
fieldName: row[0],
dataType: row[1],
}));
console.log('dataTableFields', dataTableFields);
setAccelerationFormData({
...accelerationFormData,
dataTableFields: dataTableFields,
Expand Down

0 comments on commit 63e69a6

Please sign in to comment.