Tunca Ulubilge

Results 14 comments of Tunca Ulubilge

@vuhung3990 I had the same bug with height not resizing properly. I'm also using a custom player but I doubt the problem is with the player. It seems like the...

Hi @gksander, I believe the breaking change was a typescript error for us. I've just checked 36.6.0 and the issue seems to be resolved 🎉 (by this PR https://github.com/FormidableLabs/victory/pull/2363), so...

@gksander I have created a PR to address this issue and remove all the carets: https://github.com/FormidableLabs/victory/pull/2424 Version bumps are handled by `changesets/cli` which will follow the new format automatically.

We see this issue in our logs as well, but doesn't seem to be causing any problems. Is this causing problems for the rest of you? Branch sdk is initialising...

Hi @orta, great blog post, reading about Artsy's experiences with React Native is always super helpful! I'm curious if you ever tried libraries such as `react-native-web` or `react-native-dom` to unify...

Thanks a lot for the detailed explanation @zephraph , that's quite useful, and exactly what I was hoping to hear. We are using react-native-web in production but we sure had...

Hi @gksander , if we don't use pinned versions in sub-packages (such as `victory-area`), we would have resolution conflicts, and potentially end up with multiple versions of another sub-package. Let's...

Hi Andy, thanks for the quick reply. What if I need those symlinked packages to be transpiled as well? (which is probably the case for most monorepos). I'm building a...

That worked, thanks Andy! This is how my webpack.config.js looks like now: ``` const path = require("path"); const fs = require("fs"); const createExpoWebpackConfigAsync = require("@expo/webpack-config"); const appDirectory = fs.realpathSync(process.cwd()); const...