Kristian Tryggestad

Results 9 comments of Kristian Tryggestad

I managed to get `cypress open` up and running in a VS Code Devcontainer backed by WSL2 and Docker using a X11 server. 1. I added the following to my...

I'm experiencing the same thing. Found out that re-declaring the field on the subtype instead of using `t.modify` acts as a workaround.

I'm getting the same error as you, albeit with a different config (webpack5, storyStoreV7, CSFv3 and `stories: ['../packages/ui/src']`). In my case, `yarn chromatic trim-stats-file apps/storybook/storybook-static/preview-stats.json` produces a file where there's...

Think I got this working by creating my own wrapper composable returning a `t()` function with custom types: ``` type Translations = Messages["en"]; type PathToLeaves = T extends PropertyKey ?...

Thanks @taeold. This is maybe another bug/feature request, but I also noticed that .env variables aren't available when the "startup code" is ran, so it's currently not possible to e.g....

This PR fixed my Windows-problems regarding icon paths 👍 Any chance this can be merged?

Just bumped into this issue myself. Resolved it by doing as specified in https://github.com/graphql-nexus/nexus/issues/816#issuecomment-772824518, putting it into `makeSchema`'s types. In your case it will probably be enough to export both...

I'm experiencing stale UI values in parts of my application that's running in `StrictMode`, so it looks like the React 18 support isn't 100% fault free @christianalfoni. The same values...

Thanks for the swift response! I've upgraded my project to the latest `@next` tag, and it seems to have fixed the bug I was encountering. I'll keep using it until...