Misha

Results 43 comments of Misha

Hi, is there any progress? I believe it's not expected since it contradicts with examples in docs. ``` It can also be chained with .contain or .include, which will work...

looks like it doesn't like any expressions in JSX like ``` {node} // MemberExpression {loading && } //LogicalExpression ```

Was thinking about using https://github.com/ThomasAribart/json-schema-to-ts but TypeBox seems a bit nicer option here since it gives concise API and all the autocompletes

Faced the same issue. I'm trying to pass https://github.com/auth0/express-jwt middleware to compose and get error ``` Argument of type 'RequestHandler' is not assignable to parameter of type 'Handler' ``` since...

@airhorns I switched to react-dnd-touch-backend

```ts repro type Connector = < AccessToken >(optsA: { getAccessToken(input: {code: string}): Promise<AccessToken>; }, optsB: { validateAuth(input: {fields: AccessToken}): Promise<{name: string}>; }) => any; const connector: Connector = (inp) =>...

wow, thanks for the detailed answer and the workaround

Right now I can imagine 3 cases where we use dropdowns and the list can get long enough: 1. language selector in code editor block. Here it should be definitely...