Results 23 comments of Kory Schneider

Hi, thanks for reporting this issue. The reason for `link;;http://localhost:` not working is [this regex](https://github.com/KorySchneider/tab/blob/master/src/index.js#L281) being too picky about what is and is not a URL. I would like to...

A very reasonable request, I will add this option when time permits. Feel free to open a PR too, if you want to jump into the code.

Thanks for reporting, I will look into this when time permits.

Update: I was adding the chrome launch flags in the wrong place -- I have updated the docker command in the original post to include these flags. Unfortunately, after adding...

Yeah seems like a fine thing to add. PRs welcome!

The `resolutions` workaround did not work for me, but updating `@storybook/addon-storyshots` and `@storybook/addon-storyshots-puppeteer` to `@future` (currently `7.0.0-alpha.40`) seems to have fixed it. @shilman It would be great to get [this...

@shilman Ah I see. Not sure why the resolutions didn't work...I'm using pnpm so potentially a bug with that?

@shilman Yep that's what I used. `resolutions` is just an alias for `overrides`. I tried it two ways: ``` "overrides": { "react-test-renderer": "18.2.0" } ``` and ``` "overrides": { "@storybook/addon-storyshots>react-test-renderer":...

@barroudjo I believe I did but I'll try it again soon and see what I see. What I do remember is that in the logs, the TypeError was coming from...

Seems that the `trackRef` ref is not getting set before `componentDidMount` is called. `getOffsets` is called inside `componentDidMount` and tries to call `trackRef.current.getBoundingClientRect()`, but the ref is still null. The...