As you can see in the image there is line which divides each table column heading. I wish to remove these dividing lines from this table. I'm using Antd table component. https://ant.design/components/table#examples
Using css:
.ant-table-thead > tr > th {
border-right: none !important;
}
solved the issue.