This is an automated email from the ASF dual-hosted git repository. msyavuz pushed a commit to branch msyavuz/refactor/use-ant-tables in repository https://gitbox.apache.org/repos/asf/superset.git
commit a4e5e38db102d526fd7ded5374b43dfa5c9ad99e Author: Mehmet Salih Yavuz <[email protected]> AuthorDate: Mon Apr 7 10:39:02 2025 +0300 chore: leading underscore --- superset-frontend/src/components/TableCollection/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset-frontend/src/components/TableCollection/index.tsx b/superset-frontend/src/components/TableCollection/index.tsx index fb228c6dd0..0e4d04c6e5 100644 --- a/superset-frontend/src/components/TableCollection/index.tsx +++ b/superset-frontend/src/components/TableCollection/index.tsx @@ -149,7 +149,7 @@ export default memo( cell: (props: any) => <td {...props} data-test="table-row-cell" />, }, }} - onChange={(pagination, filters, sorter: any) => { + onChange={(_pagination, _filters, sorter: any) => { setSortBy?.([ { id: sorter.field,
