Skip to content

Commit

Permalink
fix(technical): fixing types error for compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
ayonious committed May 12, 2021
1 parent addb081 commit 68a8bf7
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/internalTable/input-converter.ts
Expand Up @@ -21,6 +21,5 @@ export const rawColumnToInternalColumn = (
...objIfExists('color', column.color as COLOR),
...objIfExists('maxLen', column.maxLen),
...objIfExists('minLen', column.minLen),
...objIfExists('length', column.length),
alignment: column.alignment || DEFAULT_ROW_ALIGNMENT,
});
1 change: 0 additions & 1 deletion src/utils/table-helpers.ts
Expand Up @@ -69,7 +69,6 @@ export const createColumFromComputedColumn = (
...objIfExists('color', column.color as COLOR),
...objIfExists('maxLen', column.maxLen),
...objIfExists('minLen', column.minLen),
...objIfExists('length', column.length),
alignment: column.alignment || DEFAULT_ROW_ALIGNMENT,
});

Expand Down

0 comments on commit 68a8bf7

Please sign in to comment.