Mihael Konjević

Results 11 comments of Mihael Konjević

Does it work correctly if you're not using `$ref` and you just copy / paste the address schema?

Hi, Unfortunately I didn't have time to look at this yet. I'll try to find some time next week.

I'm interested to work on this feature. I've looked through the code, and it seems that the basic implementation could be as simple as ```clojure (defmacro clone-element "Clones a React...

@morgancmartin we are using the url pattern in all of our apps and so far we didn't notice any visible slowdown. It will definitely be somewhat slower because of the...

We usually wrap the request fn with additional processing if it’s needed, there’s nothing automatic unfortunately

Hey, thank you for this PR. I see that you've added deps.edn . Since this project is using leiningen can you remove deps.edn for now, and ensure that the deps...

@neektza https://blog.jooq.org/the-performance-of-various-to-many-nesting-algorithms/ . It's still N+1, but on the DB level, so no network roundtrip. TL;DR, it will depend on the size of the dataset.

I've fixed this issue by using `patch-package` to patch the `@react-native-community/cli-platform-android` package so it loads the dependencies from the root `node_modules` folder. The issue definitely seems to be related to...

From my research it seems that the order of classes for one media query are not important, but it's important to order media query groups (to ensure correct precedence of...

@endenwer There are multiple approaches: 1. You can use one form and make validators check the form state before validating the field. Validator functions receive the whole form object as...