Ev Haus

Results 136 comments of Ev Haus

I'm not seeing the issue you're describing. Could you include a screenshot?

Seeing the same thing with the `entities` module. Simplest way to repro is: Install `jsx-email` dependency ``` // index.tsx import { render } from 'jsx-email'; console.log(await render(Hello World)); ``` This...

I'm seeing the `client.terminate is not a function` error in my custom webpack app as well when running the dev server.

I can definitely see the usefulness of this but it's not obvious to me how you would pass this prop in given that the chart components being passed into `react-pdf-charts`...

This is intentional. The History page shows you only videos you've already watched, so there's no point of hiding anything. It would always just hide the entire page.

I see what you mean. I'm not sure the "% watched" data we get back from YouTube will be accurate enough to support that. I can check... maybe it's gotten...

Thanks for the quick response @chargome. Looks like I was missing one crucial element. Seems like it's an issue with `@aws-sdk/client-s3`. Simply importing from there causes the error. The full...

I tracked it down to these 2 packages. To temporarly fix this problem, I've set these pnpm resolution/overrides: ``` "resolutions": { "@react-pdf/layout": "4.1.1", "@react-pdf/stylesheet": "5.0.1" } ``` So it seems...

Thanks for taking a look @diegomura. I created a minimal repo: https://github.com/EvHaus/react-pdf-2988. The line height is defined as: ```js const styles = StyleSheet.create({ page: { lineHeight: 1.6, } }); ```...

I've confirmed this is indeed caused by #2952. If it helps others, these are the [pnpm patches](https://pnpm.io/cli/patch) I'm using to work around this bug for now: [@react-pdf__layout.patch](https://github.com/user-attachments/files/19598856/%40react-pdf__layout.patch) [@react-pdf__stylesheet.patch](https://github.com/user-attachments/files/19598857/%40react-pdf__stylesheet.patch)