Ola

Results 32 comments of Ola

Version `3.20.0` should work with React 18, 17, 15 and 14 now.

Yes, at least if you are only doing client side rendering of React.

Yeah I should probably add a better description and explain that the only thing `react-ab` does is randomly pick a variation to render, informs you what variation was picked and...

It's possible to keep it consistent by setting the `random` or the `get` prop. For example: ``` js function random() { if (TESTING) { return 0 } return Math.random() }...

You can also modify the `get` prop. ``` js { if (cookie.get(key)) { return cookie.get(key) } return "variant" }} /> ```

Can you post some example code and which browser and React version you are using?

Nice work patching `webpack-dev-server` :+1:, will merge and update the dependencies then

Could you give me the diff `git diff > bug.diff`? I'm using the `parse-diff` package to parse the diffs. Thank you