Toni Parviainen

Results 10 comments of Toni Parviainen

Had some lunch and came up with the following workaround for this issue. Say your lambda function project is `lambdatest.csproj`. Edit it and add something like this: ``` ``` This...

It seems to be issue on their (Kraken) end https://www.reddit.com/r/BitcoinMarkets/comments/6pvh4c/kraken_minimum_volume_issue/ Minimums https://support.kraken.com/hc/en-us/articles/205893708-What-is-the-minimum-order-size-

We ran into this exact issue. The enums are stored as strings inside JSONB document but queries fail because query contains `CAST` to integer which fails. Any idea when this...

I have also noticed the same issue. E.g. I can have following: ``` export const HumanModule = Type.Module({ AddressSchema: Type.Object({ street: Type.String(), streetNumber: Type.Number(), }), PersonSchema: Type.Object({ name: Type.String(), homeAddress:...

This might be related/duplicate of this issue where useWatch is triggered for field B even though field A validation is triggered https://github.com/react-hook-form/react-hook-form/issues/12925

Hey @bluebill1049 just to confirm: If we need to do cross field validation (field A changes so field B should also be validated) with `useController` is the correct way to...

I updated the codesandbox to use the latest v7.61.1 but the issue persists.

Tested with 7.66.1, no change. Ping @bluebill1049 do you have any idea if this "useWatch triggered for unrelated field" can be fixed for v7 or is there some kind of...

Tested with 7.69.0, no change. The component watching `organization` still renders even though we only change the `firstName` in the form