Skip to content

Commit

Permalink
fix: debug table
Browse files Browse the repository at this point in the history
  • Loading branch information
benlister-okta committed Jul 23, 2024
1 parent be5e6eb commit 11a1ee5
Showing 1 changed file with 1 addition and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -175,20 +175,7 @@ export const InnerRoadmapTable = () => {
});
};

return (
<DataTable
columns={columns}
totalRows={data.length}
getRowId={({ name }) => name}
getData={fetchData}
hasChangeableDensity={false}
hasColumnResizing={false}
hasColumnVisibility={false}
hasPagination={false}
hasRowSelection={false}
hasRowReordering={false}
/>
);
return <DataTable columns={columns} getData={fetchData} />;
};

const WrappedRoadmapTable = () => {
Expand Down

0 comments on commit 11a1ee5

Please sign in to comment.