Jacob Fletcher

Results 84 comments of Jacob Fletcher

> Just figured out **link is applied on `yarn add` command only**. If you already have the remote package installed and you link it to a local one, you won't...

Same as described above in my NextJS app, but I've found CSS variables to be a suitable workaround in many cases: First, define (or redefine) your variable: `document.documentElement.style.setProperty('--fontWeight', '500');` Then...

I was able to partially fix this by syncing history changes to `next/router` in the background from within the `createURL` method, like this: ```jsx import Router from 'next/router'; import {...

^ To add to my comment above, this is considered a "partial fix" because it only fixes full-page transitions, not shallow ones. Here's a breakdown: Works: 1. Filter the search...

Hey @miiketran this appears to be working for me, so I wonder if there's something else going on with your config. I did attempt to reproduce your issue [on this...

> Case Studies render path "affected" with /case_studies instead of /case-studies here due to some path character replacement when linking the case-study document with the said linkgroup buttons. @pcbal I...

Hey @cbratschi are you still having trouble with this?

Hey @r1tsuu it's no problem, happy to provide some context here. You're right in that we can lean into the Local API now instead of REST. That will definitely happen,...

Hey @r1tsuu just following up here. Check out the latest code where we use the `initPage` function to send headers, cookies, etc. to the `payload.auth` operation similar to as you've...

I'm not a huge fan of the HOC pattern here tbh simply because you still need to thread through custom args for each page, i.e. the config and the route....