James Powell

Results 10 comments of James Powell

Not sure if this is related to the same issue as this, but I'm having issues getting HMR working with the react plugin on Vite 3, client-side only. Weirdly enough,...

@ansarizafar It should be possible to use ship-hold just to generate the SQL. The Postgres connection and query execution can then be handled with pg-promise which has transaction support in...

If you're using NestJS, I'd recommend patching it, that's what we're doing so we can still keep up to date with the latest version of NestJS

You can use [this package](https://github.com/ds300/patch-package) to revert [this commit](https://github.com/nestjs/nest/commit/f4d7af83eaf51407adc3d7f52ee9c70553d9c207) which is what originally caused this issue to start appearing (although the bug lies in class-transformer rather than NestJS)

@stevenbeck unfortunately #113 didn't fix this (at least for Facebook Messenger) Please check #146

Thanks @stevenbeck, can confirm this is now fixed. Just make sure to use: ```javascript agent.add(new Payload(agent.FACEBOOK, payload, {sendAsMessage: true})); ```

#173 makes this possible. Multiple payloads are supported using ```javascript agent.add(new Payload(agent.FACEBOOK, facebookPayload1, {sendAsMessage:true})); agent.add(new Payload(agent.FACEBOOK, facebookPayload2, {sendAsMessage:true})); ``` EDIT: This is not actually possible, as pointed out by @maganap...

Any updates on this? Would be great to use on an OpenAPI 3.0 documented API that I'm work on!

I'm having issues with the scroll lock on the dialog, which is resetting the scroll position whenever it activates due to the weird way scrolling is implemented in our app....