Erik Jälevik

Results 21 comments of Erik Jälevik

I'm seeing a slightly different version of this error in an Electron app using the `@sentry/electron` v3.0.7 npm package. I'm doing a vanilla init with just: ``` Sentry.init({ dsn: "[my-dsn]",...

Haha @jpmcglone, amazing timing! I only just the other day had a heated debate with my dear colleague @richeterre about this, me arguing for a more context-based organization like the...

Yes, I think that would be welcome.

Unfortunately @spentak's solution doesn't work for me. I have: ``` "outDir": "dist", "baseUrl": "./src" ``` and after building the project, I run: ``` ./node_modules/.bin/tspath -f -jsPath ./dist ``` TSPath then...

I also put up a SO question here: https://stackoverflow.com/questions/50101147/how-to-configure-electron-to-use-typescripts-baseurl But still no replies.

I'm not sure I fully understand your use case, but I just ran into the same issue, where hovering over items was causing re-renders, which I hadn't expected. It's because...

The keyboard navigation is unrelated to `onMouseMove`, it can be supported by using the `highlightedIndex` value for styling your menu item. But yeah, I think we're talking about two separate...

Ah fair enough. In the app I'm working on, we consider hover and selected as different states, so I don't want the mouse hovering over an item to have any...

Mac's Finder doesn't actually support cutting files, so it shouldn't be an issue there. Instead they have the concept of "special paste", where you can decide whether to copy or...

I am also quite often seeing a splurge of "Uncaught illegal access" errors in the console after closing a popup window opened using `window.open`. It sometimes coincides with other failures,...