andyg5000

Results 13 comments of andyg5000

Related: https://github.com/composer/getcomposer.org/issues/36 +1

Hey @shadcn What do you think is the best way to handle this for a site that's getting ready to launch? Should I just omit the caching option? Thanks!

After looking into this, `getJWT` is passed `inititalJWT` which appears to be fully populated. Removing the caching logic and returning `initialJWT` whenever it's `accessTokenExpires` aged out seems to work fine....

I'm experiencing a related issue. I've memo-ized my `source` and `options` properties which prevents the re-render in production. However, in react strict mode (during development) I'm getting a re-render that's...

Hey @realamirhe Thanks for following up. Here's a sample of what I'm seeing with `usePlyr` https://codesandbox.io/s/hidden-shadow-ep3dnk?file=/src/App.js When you open the link, it may or may not load the video. If...

https://github.com/cweagans/composer-patches#error-handling for reference

You can also reproduce the issue in Chrome without any custom code: 1. Load https://platform.harvestapp.com/platform/timer 2. Start a timer 3. Remove focus from the "stop timer" button 4. Wait and...

Edit: disregard. I thought my answer was correct, but turns out that the `php-http/message-factory` was required and `psr/http-factory` is just a set of interfaces. [psr/http-factory](https://packagist.org/packages/psr/) looks to fix this issue...

Hey @weitzman, The fix is to add the following to your distribution neon. I have a pull request for drush incoming. ``` rules: - mglaman\PHPStanDrupal\Rules\Drupal\LoadIncludes ```

Hey @weitzman I think the CI pipeline has a cached phpstan index or something. Have you tried to run this locally using the debug flag? `./vendor/bin/phpstan --debug` You should only...