diff --git a/src/common/ResponsiveTable.tsx b/src/common/ResponsiveTable.tsx index e7e46ce..8c26891 100644 --- a/src/common/ResponsiveTable.tsx +++ b/src/common/ResponsiveTable.tsx @@ -474,6 +474,10 @@ export default function ResponsiveTable(props: Props) { } + useEffect(() => { + + }) + return ( @@ -528,12 +532,7 @@ export default function ResponsiveTable(props: Props) { columns.map((column, index) => { if (filterList.includes(column.title) || column.hidden) return null return ( - !column.disableSort && columnClick(column)} - // sx={{ cursor: column.disableSort ? "default" : "pointer" }} - > + (props: Props) { {index < columns.length-1 && resizeClick(event, index)} > |