Kashif Ghafoor

Results 5 comments of Kashif Ghafoor

Have you tried setting defaultViewport: null. It worked for me.

did anyone find the solution

https://kashif-ghafoor-github-actions.surge.sh/

disabling compression in client options and then decompressing the payload explicitly works fine. ```go options := []tls_client.HttpClientOption{ tls_client.WithTransportOptions(&tls_client.TransportOptions{ DisableCompression: true, }), } // make request decomBody := fhttp.DecompressBody(resp) ```

if someone stumbles upon before before enhancement get shipped. I ended up using [air](https://github.com/air-verse/air). Here is the .air.toml(at root directory) file that I used ``` root = "." tmp_dir =...