eckm
eckm
@eckm.bsky.social
outer cape dad and web developer
That's funny, I think I've internalized this unexpected behavior so much that it didn't even occur to me that anything wrapped in that function could affect the type checker 😅
September 29, 2025 at 11:55 AM
Maybe you meant to throw if value === 0 instead of !==
September 28, 2025 at 11:56 AM
Haven’t you type narrowed that the value is zero past the throw?
September 28, 2025 at 11:53 AM
The features are awesome. I love it, and my four year old is super into Transformers and Lego. But $190 frankly is bullshit! 😅 Demand commands the market price and all that and I know there are even more ludicrous sets, but I'll never pay that much.
July 10, 2025 at 6:02 PM
190 USD... 😞
July 10, 2025 at 4:35 PM
Just don’t fly over Central Park that shit is the worst. Nothing like a nice quiet walk ruined by a loud ass chopper hovering overhead.
June 22, 2025 at 10:56 AM
Looking good! Will it support multi-select?
April 15, 2025 at 5:50 PM
Just saw the new query/form example and wanted to say thank you! Very helpful.
React TanStack Form Query Integration Example | TanStack Form Docs
An example showing how to implement Query Integration in React using TanStack Form.
tanstack.com
March 19, 2025 at 2:47 PM
Thanks Corbin I will try out that refetch example! Here is a discussion post I made with this suggestion a little while ago: github.com/TanStack/for...
More robust Tanstack Query "integration" example? · TanStack form · Discussion #1014
Greetings, The "React Example: Query Integration" example is pretty half-baked for an in-Tanstack "integration". It shows two things that don't seem to be particular to Query: You can initialize de...
github.com
March 4, 2025 at 12:43 AM
A pattern we run into is with a “live” form that persists / remains open after save. Could we see an example where a query is invalidated on successful mutation (or imperatively set the query value) and the form state is reset with the new query result value in a clean state?
March 4, 2025 at 12:11 AM
Would be helpful to see a react query example that showed a deeper integration. The existing “query integration” example seems not to show an actual integration, just that you can initialize undefined until your initial values are ready, and on submit you can call an asynchronous function.
March 3, 2025 at 11:54 PM
Seeing that linting warning might push someone to swap between `useLayoutEffect` and `useEffect` to avoid both that and the "useLayoutEffect won't run on the server" message!
February 26, 2025 at 2:49 PM
Excellent read! I have a question about Shane's implementation where the body of the custom hook includes:

```js
if (typeof document === "undefined") return;

useLayoutEffect(...args);
```

Wouldn't this conditional return of useLayoutEffect violate the rules of hooks?
February 26, 2025 at 2:47 PM