Adam Björnberg

Results 8 comments of Adam Björnberg

@imaNNeo Can this please be reopened? Real time data is not animated correctly since the points are lerped based on index rather than timestamp (or unique "key"). It looks okay...

The sample in the docs looks like this if we use random noise instead of sine / cos function: https://github.com/user-attachments/assets/148c4159-68c6-4565-9f1f-8dcf5b3e78b1

Would be nice if it was possible to pass a Map of points instead of a List. And each point is lerped to a point with the same key when...

> > Would be nice if it was possible to pass a Map of points instead of a List. And each point is lerped to a point with the same...

Here is a quick-fix if you need: ```ts import { createRouter, parseSearchWith, stringifySearchWith } from '@tanstack/react-router'; function parseSearch(value: string) { const parsed = JSON.parse(value) as object; if (parsed && typeof...

@isnifer I put up a PR: https://github.com/TanStack/router/pull/6000 :)

@isnifer The quick-fix didn't quite work, i updated it now

Fixes: https://github.com/TanStack/router/issues/6044