Jan Amann

Results 436 comments of Jan Amann

Not sure if this is related, but also with `@graphql-codegen/[email protected]` I'm not able to suppress regular logs in dev mode. I'm using this as a workaround: ``` "dev": "concurrently \"next...

Hmm, interesting. `next-intl` currently uses [`intl-messageformat`](https://npmjs.com/package/intl-messageformat) for parsing messages. Can you check if this behavior also applies upstream?

Thanks for reporting the bug upstream!

We're currently at the mercy of Format.js here. I haven't dug too far into this, maybe they're right about not allowing rich tags to start with a number (as per...

Glad you were able to figure out a solution! I'll close this for the time being.

> * `next-intl` wraps or patches the `router` internally A note here: `next-intl` doesn't patch anything, but merely provides [a convenience wrapper](https://next-intl.dev/docs/routing/navigation#userouter) around Next.js' `useRouter`. I'm not really familiar with...

Really cool to see this proposal! 🙌 > Interceptors will opt pages into [dynamic rendering](https://nextjs.org/docs/app/building-your-application/rendering/server-components#dynamic-rendering). I guess that's because the `request` is passed to the function, so it's assumed to...

I have the same issue since [`graphql` uses `Object.create(null)`](https://github.com/search?q=repo%3Agraphql%2Fgraphql-js%20Object.create&type=code) ([repro](https://codesandbox.io/p/devbox/graphql-serialization-l57z7d?file=%2Fapp%2Fpage.tsx%3A39%2C9)).

I ran into this problem too: ```tsx function getThrowError() { return function throwError() { throw new Error(); }; } const throwError = getThrowError(); throwError(); // Should be unreachable console.log("test"); ```...

Here's an update: https://github.com/lokalise/i18n-ally/issues/1009#issuecomment-2545525703