diff --git a/src/components/Table/index.tsx b/src/components/Table/index.tsx index b48480f..90e98e2 100644 --- a/src/components/Table/index.tsx +++ b/src/components/Table/index.tsx @@ -80,7 +80,7 @@ export default function Table({ {items.length && !loading ? ( {headers.map((header, i) => { - const isSortable = !!(header.sortable || header.sortFunc); + const isSortable = !!((header.sortable && header.key) || header.sortFunc); return ( {header.key && header.title && (