Fork me on GitHub
#reitit
<
2022-03-02
>
timo11:03:41

Anyone seen the problem that in reitit.frontend.router the view gets called twice? I am seeing duplicate html on my website. :thinking_face: But probably it has nothing to do with reitit...it's a new project I overtook and don't know too much about the tech.

Pablo18:03:30

Hello everyone, How can I coerce special form of query params (`http://example.com?foo[lt]=10`)?

dvingo02:03:02

you will have to add a custom schema/spec for this depending on which coercion lib you're using

dvingo02:03:44

it would take a string like "[lt]=10" and return the data you're expecting like {:op :less-than, :value 10} or whatever you have in mind