Abhishek Srinivasan
Abhishek Srinivasan
> @Jackeysharath This really helped.... for a comment typo i wasted like hours
@FleetAdmiralJakob Shall I work on this?
@FleetAdmiralJakob is this worked upon? I just checked the same in mine, its seems to be working fine. Can you please confirm?
@MohammedAslam106 yes you are right!! It's happening only when it's a single long word
Ok let me give a try and share a screenshot of that
Or shall we use `whitespace-pre-wrap"` ?
I applied `max-w-md overflow-hidden` on the card component, now the card size is fine but the text is still behaving same. Any idea how to fix that? 
> Here is my solution.  This looks good
``` const axios = require('axios'); const url = 'https://dog.ceo/api/breeds/image/random.jpg'; axios.get(url, { responseType: 'blob' }) .then((response) => { if (response.status === 200) { const blob = response.data; const image = document.createElement('img');...