i am using table tags like tr td in react. and thid warning is coming up. how to not see this warning. i cannot go and remove all the whitespaces as mentioned in some other stackoverflow answers as there are div tags inside of it
<td>
<p
className={`status_sale_optn ${item.status ? "" : ""}`}
>
{item?.status ? "Active" : "Inactive"}
</p>
</td>