David Schnurr
David Schnurr
cc @rtsao @ganemone
Gotcha. Was the API you all had in mind similar to the one shown above? > its just a bit more complex than it seems so adding it will take...
> I think the constraint of key literals still makes sense for but adding a useTranslations hook with support for arbitrary pattern(s) would be ideal for this use case. Out...
Appreciate the thorough reply. Agree that hooks can provide a better devexp compared to HOCs/render props in many cases. There's still significant disagreement among engineers I've talked to about if...
The combination `prompt: 'consent', accessType: 'offline'` worked for me. Same result here: https://github.com/jaredhanson/passport-google-oauth2/issues/27
Looking at the commit history, this appears to be the only material change: https://github.com/jaredhanson/passport-google-oauth2/pull/53 This changes the strategies default behavior for fetching a users Google profile information to the Google...
This simple solution seems to work well if you just need to initialize some atom states before testing a component: ```js render( snap.set(myAtom, {foo: 'bar'})}> , ); ```
I ran into this also. I set up a [custom document](https://nextjs.org/docs/advanced-features/custom-document) for next.js that configures styled components for server side rendering (see [example](https://github.com/vercel/next.js/blob/master/examples/with-styled-components/pages/_document.js)). This at least got styles rendering correctly,...
My current workaround – instead of using `fullPage` I measure the body bounding box and use that as a clipping argument: ``` const bodyHandle = await page.$('body'); const { width,...
Thanks for reporting – we'll push a fix for this shortly!