Skip to content

Commit

Permalink
fix: removing comment
Browse files Browse the repository at this point in the history
  • Loading branch information
a-rena committed Jul 24, 2024
1 parent e96898c commit d05f667
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ export function convertHTMLTablesToDataSet(
slices.push(slice);

let columnConfig: (typeof columnConfigs)[number] = {
name: columnName.length > 0 ? columnName : `column ${index + 1}`, // adding > 0 for the purpose of prerelease. Will revert it while releasing main package.
name: columnName.length ? columnName : `column ${index + 1}`,
slice: slice.id,
};

Expand Down

0 comments on commit d05f667

Please sign in to comment.