Skip to content

Commit

Permalink
feat(SPV-960): Removed comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Nazarii-4chain committed Aug 23, 2024
1 parent 2cf8e43 commit 12dcda6
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions src/components/DataTable/DataTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,19 +84,7 @@ export function DataTable<TData, TValue>({
{row.getVisibleCells().map((cell) => (
<TableCell key={cell.id}>{flexRender(cell.column.columnDef.cell, cell.getContext())}</TableCell>
))}
<TableCell>
{/*{table.getColumn('status') && row.getValue('status') === ContactStatus.Awaiting ? (*/}
{/* <div className="grid grid-cols-2 items-center w-fit gap-4 ">*/}
{/* {isContact(row.original) && row.original.status === ContactStatus.Awaiting && (*/}
{/* <>*/}
{/* <ContactAcceptDialog row={row as Row<Contact>} />*/}
{/* <ContactRejectDialog row={row as Row<Contact>} />*/}
{/* </>*/}
{/* )}*/}
{/* </div>*/}
{/*) : null}*/}
{renderInlineItem ? renderInlineItem(row) : null}
</TableCell>
<TableCell>{renderInlineItem ? renderInlineItem(row) : null}</TableCell>
<TableCell>
<DropdownMenu>
<DropdownMenuTrigger asChild>
Expand Down

0 comments on commit 12dcda6

Please sign in to comment.