Quentin Brunet
Quentin Brunet
Hello, it's me again! I've just found what was causing my issue. 🤩 I first thought it was a fontconfig path issue, because the layer lives in `/opt/nodejs` or maybe...
Update. Even if it works well locally with a `lambci/lambda:nodejs12.x` Docker image from [shelf.io](https://github.com/shelfio/chrome-aws-lambda-layer). In real AWS environment the lambda timeout on `const page = await browser.newPage();` when I remove...
I was able to manage this with a function that handle `click` : ```js handleTooltip = () => { const node = findDOMNode(this.refs.clippedText); ReactTooltip.show(node); setTimeout(() => { ReactTooltip.hide(node); }, 750);...