David Dios
David Dios
@taksuparth I think both ways have their own valid usage. We can easily add an all-in-one questionnaire combining the existing questionnaires. Do you want to experiment with that or should...
As discussed on Slack, I'm building a proof of concept which: **Replaces the auto-increment IDs with random generated ones** This solution will provide easier contribution, as people won't need to...
Check my initial implementation here: https://github.com/EddyVinck/ConfTalks/pull/12 Any feedback is welcomed! :)
In the meantime, this works fine: ```js import { fireEvent } from '@testing-library/dom'; // or `@testing-library/react` // ... const slider = container.querySelector('input[type="range"]')!; fireEvent.change(slider, { target: { value: 170 } });...
Hey, does this fix these warnings? `Warning: forwardRef render functions do not support propTypes or defaultProps. Did you accidentally pass a React component?` Would it be possible to merge and...
fyi I updated to latest jest (29) and undici works fine with the `node` test environment
After taking a quick look into this issue, I found that the ObservableQuery implementation in apollo-client has a method called [isDifferentFromLastResult](https://github.com/apollographql/apollo-client/blob/master/packages/apollo-client/src/core/ObservableQuery.ts#L255) which compares the previous and the new results when...
Hey @metrue, I implemented a basic prometheus middleware for hono: https://www.npmjs.com/package/@hono/prometheus If you have any questions / feature requests etc feel free to open an issue in https://github.com/honojs/middleware and tag...
Hey @atombender, I agree with your point. I'm actually using groq-store and trying to make it a bit faster on my end. Using `Map` looked to be the simplest change...
> `dereference: 'map'` (which builds the Map for you and uses it) and then default to dereference: 'map' for better performance I had a similar idea (the "B" option I...