Thai Pangsakulyanont

Results 165 comments of Thai Pangsakulyanont

Hello, thanks for your reply. 😄 - About component names, we can codemod or Babel all our React components to include a `displayName` property. As a last resort (e.g. in...

> Users shouldn't have to regress in production to debug issues. Having to include displayName for every build would definitely increase bundle sizes and slow things down. We’re making a...

Here’s our settings for caching dependencies in a Rush monorepo. ```yml - name: Cache Rush uses: actions/cache@v2 with: path: | common/temp/install-run ~/.rush key: ${{ runner.os }}-${{ hashFiles('rush.json') }} - name:...

@redone147 Your animation page is missing `getInfo()` function. You must define it in your page. [Please check out the docs for more details](https://github.com/dtinth/html5-animation-video-renderer#creating-your-html5-animation).

Hi @drveresh and thanks for your interest. Creating a reusable library is out of the scope for this project right now, and I currently have no plans to do that....

@drveresh You can delete the [lines 296-342](https://github.com/dtinth/html5-animation-video-renderer/blob/23bdaad8e54eded9984568b046a5e05b37ea4373/render.js#L296-L342). Then you have a CLI without Express. If you run into errors, [please provide a reproduction case and paste an error message in...

@drveresh I see. This project is a CLI and not a library. If you want to use it as a library, you can fork this project and turn it into...

We just ran into this case where an email is being sent twice by this code: ```js useEffect(() => { sendVerificationEmail() }, []) ``` …and an engineer fixed it by...

Would be great if this can be merged. 👍 Some OIDC providers implement the [Core](https://openid.net/specs/openid-connect-core-1_0.html) specification, does not implement the [Discovery](https://openid.net/specs/openid-connect-discovery-1_0.html) spec, and only supports `id_token` response type. The only...