Skip to content

Commit

Permalink
style(universalTable) use Array<T> for columns prop (#5260)
Browse files Browse the repository at this point in the history
  • Loading branch information
magicznyleszek authored Nov 13, 2024
1 parent 2f1d45e commit df905ff
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ interface PaginatedQueryUniversalTableProps<DataItem> {
// Below are props from `UniversalTable` that should come from the parent
// component (these are kind of "configuration" props). The other
// `UniversalTable` props are being handled here internally.
columns: UniversalTableColumn<DataItem>[];
columns: Array<UniversalTableColumn<DataItem>>;
}

const PAGE_SIZES = [10, 30, 50, 100];
Expand Down

0 comments on commit df905ff

Please sign in to comment.