Vysakh Sreenivasan

Results 2 issues of Vysakh Sreenivasan

I have an excel sheet with korean and chinese columns, it seems it is not parsing it. Is there any plans to support unicode in the future?

```js export const useLogin = () => useTypedMutation('mutation', { signIn: [ { input: { email: $('email', 'String!'), password: $('password', 'String!'), }, }, { token: true }, ], }); ``` ```...