Brian Ingles

Results 13 comments of Brian Ingles

I see this higher up in the thread: > 2. for now local and remote file structure have to match - need to add a "serverRoot" to the game. I...

If you are using TypeScript 2.1+, you can take advantage of keyof and mapped types to get type safety for your commit and dispatch calls (both for the string identifiers...

@halcwb any updates on this?

It might be nice to have a way to assert that a particular number of expect calls were made. This is particularly useful for testing callback code. eg. something like...

I ended up writing a util function to help with this: ```typescript /** Remove the Partial constraint from TArgs */ export type StoryRequiredArgs = Story & { args: TArgs };...

I also see this issue specifically when I enable this extension. In my case it happens when I am building a typescript project. My theory is that it is caused...

In case it helps, the codesandbox attached to #6181 will automatically reproduce this issue 100% of the time. https://codesandbox.io/p/sandbox/frosty-shtern-k9hv39

@snowystinger I don't think this has anything to do with id vs key but is a side effect of how the React `key` prop handles values as suggsted by @sookmax...

In my case we have implemented Windowed data where data on items is lazy loaded based on scroll position. The item data looks something like: ```typescript interface { key: Key,...