Arseny Garelyshev

Results 46 comments of Arseny Garelyshev

> > > Is this solving your problem? > > ```ts > type Input = Parameters[0]; > ``` It works, but of course this is still a thing I need...

`displayPrint` doesn't seem to be an actual css property. What you want is ```css @media print { display: block; } ```

Hitting this in react, in my case, somehow: ```tsx if (company.logoUrl == null || company.logoUrl == "" || imageLoadFailed) { - return {company?.name || ""}; - } - - return...

> You can achieve that by: > > ```js > mutate(request, { > populateCache: false, > optimisticData: currentData => newData, > revalidate: false > } > ``` Sadly, this doens't...

Found why it didn't work. After an hour remembered that useSWR uses deep comparison. For the return type, this works: ``` () => { void postStuffToTheApi(); return null; }, ```...

Not OP, but this PR is mentioned in open https://github.com/mui/material-ui/issues/29742, so I guess it is still an issue.

It doesn't seem like twilio-video.js uses SharedArrayBuffer. Recently (with one of Chrome updates) this error started appearing in all React versions (all but the most recent one, 17.0.2, which fixed...

My NextJs application includes video calls, chat and audio calls, but has nothing else inside it, it's a big wrapper for those tree features, As such, twilio services uses 175...

Happened to me in this way: ![image](https://user-images.githubusercontent.com/17963791/104486298-5cf37000-55ed-11eb-80b5-d7b5e923f7e2.png)

I've console.log'd `onHeightChange`, and on my page ff reports `rowHeight` of 7 and Chrome - 17, the issue lies in calculation of rowHeight it seems.