Now the code responsible for that: ```csharp const title = v.title.length > 72 ? v.title.substring(0, 72) + "..." : v.title; ``` Need the length to change depending on the size of the video card.
Now the code responsible for that:
Need the length to change depending on the size of the video card.