Kevin Sweet

Results 11 comments of Kevin Sweet

Since `TippyProps` is exported, and it contains a `singleton` type, you can access `SingletonObject` through that: ```ts import Tippy, { TippyProps } from '@tippyjs/react' interface Props { tippySingleton: TippyProps['singleton'] }...

@johnfmorton I'm seeing the same issues you are. Moving main.scss to _scss and removing the front matter kind of helped, except then it complained about not having default Jekyll template...

To re-render components immediately, I added: ```js document.addEventListener("turbolinks:render", function(event) { ReactRailsUJS.mountComponents() }) ``` That avoids flickering when loading a cached page, but it ends up calling `mountComponents` twice: once after...

Hey @RyanMcDonald, thanks so much for your example and the repro! Between the two, I got this working as well. For anyone else who attempts this next, one other piece...

I've got the same problem, receiving the same error. Disabling the source maps in webpack _works_, but I don't want to do that. @dylanitorium Did you figure out a workaround?...

@dylanitorium Thank you so much for the lightning fast response! That worked for me as well. Also, agreed that server rendering has been a total PITA. =/ Here's a slimmed...

So I just kind of integrated rrssb with sharrre tonight on my personal site. You can see an example at http://www.kevinsweet.com/my-bucket-list/. Sharrre by default adds a total from all the...

I would also appreciate just the go-to definition from Rails views. The parser could potentially ignore most of the file, since any ruby code should be to the right of...

@jrothrock Hey, sorry to bother you. Do you know if there's any workaround or path forward for this? We needed to uninstall Coverband, but would really love to turn it...

@jrothrock Thanks for the fast response! Coverband is meant for production environments, so we weren't using it in test. We used it to spot dead code paths that hadn't been...