dphuang2
dphuang2
Change poke-api line in Gemfile to: ``` gem 'poke-go-api', git: "https://github.com/nabeelamjad/poke-api.git", tag: '0.1.0' ``` I believe this happens because of updates to the poke-api.
I will remember to add that to the README. Thanks for your input 👍
> @dphuang2 I think you're looking at the main branch. But if you look at this repo at the 2.2.4 tag, you'll see that it's using react-hook-form 7.33.1: > >...
Just dropping my experience here. I have standalone TypeScript modules under `packages/*` and all I had to do was add `babel.config.js` with the following content: ``` module.exports = { //...
any update on best practices here? This works for strongly typing named instances of a model: ```typescript const standardOrganization = { testOrganization: { data: { name: 'Test', }, } as...
> Hi! Are there any updates on this? Running into the same issues :) > > I can't even compost out the scenario data and pass them into `defineScenario` while...
> Wait - how does your example work with inlining functions to create relations? That's the main issue. Here is an example: ```typescript const standardSpace = { testSpace: (scenario: StandardScenario):...
> This is a better solution than using defineScenario for sure, but gets extremely verbose if you're creating multiple models in each scenario and using them in other scenarios. Curious...
+1 for a Spectral Ruleset -> Markdown tool! We could definitely use this.
For anybody using [shadcn/ui](https://ui.shadcn.com/), you can use this onValueChange function instead: ```javascript // clear pending scroll clearTimeout(scrollId.current); // the setTimeout is used to create a new task // this is...