Matija Folnovic

Results 23 comments of Matija Folnovic

Awesome. I'll try to find time for this sometime soon. As for markdown, it seems it's pretty similar: - https://daringfireball.net/projects/markdown/syntax#code - https://daringfireball.net/projects/markdown/syntax#precode So it should be easy to support both!...

@IrishkA13 2.2.0.M3, so I assume it goes to future release `2.2.0.RELEASE` (so it's not released yet, just `M3`)

Out of all comments, the only thing that helps in my case is: `yarn install --production=false`. In all other cases, after deleting `node_modules` and running `yarn install` (or other suggestions),...

@vbaranov sorry for pinging you, just wanted to check if you'd be interested to receive PR on this issue?

Thank you from the bottom of my heart for really detailed explanation! I had a feeling it's something about previous solutions, though I also wasn't sure how big and important...

awesome, tnx for feedback and pointing me to right direction! :blush:

Okay this is interesting :see_no_evil: Looking at `txnprocessor.go`, I saw `OrionPrivateAPIS` and saw this logic: https://github.com/hyperledger/firefly-ethconnect/blob/a2b26d658f4812d1132fb673e4113a3d68884277/internal/tx/txnprocessor.go#L232-L243 Which looked similar to what I was doing client-side. So I've tried setting `OrionPrivateAPIS`...

I'd like to add this also happens with `validate` (instead of `validationSchema`), e.g.: ``` const validate = (values) => { const errors = {}; if (!values.test) { errors.test = "required";...

And I forgot to mention that, even surrounding `fireEvent.blur` with `act` doesn't help, e.g.: ``` act(() => { fireEvent.blue(input); }); ```