How to make product title on cart page unclickable?

How can I make the product title on the cart page unclickable so that the customer can’t go to the product page?

I’m using dawn theme.

Hi @YnkSch , hope you are doing well. You can do this by replacing this line on main-cart-items.liquid file

{{ item.product.title | escape }}

with the line below

{{ item.product.title | escape }}

If helpful, please Like and Accept Solution.

Thank you very much:)