Tyler McGinnis
Tyler McGinnis
I got this to work, although it's a bit tricky. Change the template like amazingBastard said, but remember that the grid creates an isolate scope. So access your filter on...
@Hirbod My solution was something like that. I remember it still actually wasn't exactly what I needed so I ended up scraping the whole thing and used a different tool.
👋 lots of plans but not making any moves right now. We have a big launch coming in the next few weeks and after that we're going to put some...
@vanillajonathan We've completely revamped the site and all the hooks. Launching it in the next few weeks and don't want to start with a bunch of out of date issues/PRs.
Yes, we've rebuilt the site and all the hooks. Launching it in the next few weeks.
Ah good call. Thanks again!
Any chance you can make a simple replication of it for me with Codesandbox?
```js function fibonacci(num) { if (num
```js var deepnis = 5; var doIt = function() { if (deepnis-- > 0) doIt(); }; doIt(); ```
Related: https://github.com/uidotdev/usehooks/issues/253