Nikola

Results 6 comments of Nikola

Ok, I actually found I way to achieve it by looking at the source code. ``` const addQueryParams = (req, res, next) => { req.originalUrl = modifyOriginalUrl() next() } ```...

Silly me, there was a js error caused by unescaped string specific for my languages.

> Im looking for something similar, the checkQuery could return the error directly and I dont need to call validationResult in my last function Here is a workaround, you can...

I am having the same issue, merge callback is invoked with the initialState and not with the updated default one. UPDATE This issue can be fixed by creating your initial...

You can set a custom shortcut and target the terminal in vscode. ``` { "key": "cmd+c", "command": "workbench.action.terminal.sendSequence", "args": { "text": "\u0003" }, "when": "terminalFocus" } ``` Note that I...

I eventually fixed it. The issue turned out to be more related to the `redux-form` package, rather than `redux-logic`