Brandon Hall

Results 5 comments of Brandon Hall

@l0gicgate is correct that #17798 introduced this bug, specifically [this change](https://github.com/OpenAPITools/openapi-generator/pull/17798/files#diff-ab6159963bf5f9cde22558cae1e5a30cb79289d1e6bf9b087a65cd20da100a1eL27-R27) (and the others like it throughout the same PR). To JavaScript and TypeScript, `null` and `undefined` are not equivalent....

Even with `noUncheckedIndexAccess` off, the index access in the snippet works correctly: `b` could be `undefined` and TS correctly raises an error when I try to call `toString`. It's the...

> maybe this can help you. Not only is there double rendering at the component level, but it also occurs at the reducer level. With `` [one of the reducer's...

Making `path` non-optional could be a breaking change for someone using `FileWithPath` as an input type. I think* it wouldn't be breaking to have a separate interface where `path` is...