Artur Pata

Results 14 comments of Artur Pata

Actually I had a similar problem, and I solved it by adding `"host": "0.0.0.0"` to each of the emulators I was using. Now, when opening localhost:4000 on Docker host machine,...

Tried some more versions. Does not reproduce in `1.45.0`: https://stackblitz.com/edit/tanstack-router-dmarzj?file=src%2Fmain.tsx After that version, issue is present in all versions to `1.45.11`.

> out of curiosity, why do you need this kind of basepath? Thanks for engaging! We have a service that customers can install for `` and/or `/`. From the standpoint...

A naive fix occurred to me In `packages/react-router/src/path.ts` `parsePathname` function ```ts const decodeURIComponentExceptForwardSlash = ( pathSegment: string, ): string => { return pathSegment.split(/%2F/i).map(decodeURIComponent).join('%2F') } return { type: 'pathname', value: decodeURIComponentExceptForwardSlash(part),...

Thanks for your report @hatamiarash7! Thanks for sharing your experience @ItalyPaleAle! I'm looking into this right now and it doesn't reproduce on my locally running CE 3.1.0 instance. Can you...

> I'm having the same issue with a fresh v3.1.0 install on Ubuntu 24.04 on a dedicated server. Plausible works at first, but after a few hundred visitors, the tracking...

Regarding the issue, I figured out what is causing it https://github.com/plausible/analytics/discussions/5884#discussioncomment-15271936 and I am working on a fix now.

I had a look as well, really good job with this, @macobo! I like the verbose tooltips, @ukutaht, but maybe we can avoid propagating the resolved period to the tooltips...

Nice! Happy with the changes @macobo, but the page errors on load in certain situations now. I think the steps to reproduce are 1. (declare flag) 2. Open localhost:8000 in...

Thanks for your well formed report, @mquandalle! It is possible to wrap those functions in requestAnimationFrame. I gave it a shot, but I wasn't able to determine whether that actually...