JayDouglass

Results 2 comments of JayDouglass

This is similar to the other answers but I'll post my solution here: ``` function stopPropagate(callback: (event: FormEvent) => void) { return (e: FormEvent) => { e.stopPropagation(); callback(e); }; }...

``` Anyways...make sure your values are valid in the config! Hope this helps someone going forward :) ``` @uncvrd Thanks, this was exactly the problem. I had both `webServer.url` and...