Woocommerce Single Product Tabs Got Duplicate

Found a quick solution for this problem. Unable to remove action as Sally mentioned above with example.For me the display:none; is enough, i have remove the child div of summary class. See the code below:

.summary.entry-summary div:nth-child(5) {
    display: none;
}

For me its 5th child maybe it will help others.