rossipedia
rossipedia
From @ryanflorence's [comment](https://discord.com/channels/770287896669978684/771068344320786452/962930725542305822) in Discord: > **ryanflorence — Today at 9:59 PM** > nah, useActionData() is a singleton, it's available in any route useActionData should return the data that was...
When using a string as the first argument to `fetch()`, all is well. When passing a `new URL()` instance, an error is thrown.
## Purpose: Returns the _inverse_ of the parser that is passed. For example: ```ts // accepts anything _except_ a `string`. z.not(z.string()) // accepts any string that _isn't_ an email z.string().not(z.string().email());...
A pattern that I see (and have used) a lot is to define methods on `handle` that accept the current `match`. Since this is invoked from a parent route, there's...