Anthony Garritano
Anthony Garritano
@tlloydukdev Were you able to find a solution? I'm running into the same thing.
@ntomallen Interesting. What version of React Native are you running?
It appears that the white screen is actually a stuck loading screen. You can test by providing `` with a `loading` prop. ``` // App content ); ``` I haven't...
@Trashpants I think I got it to work. A key part of the hydration happening is calling the store within your main App structure. Below I have a partial from...
@Trashpants While not strictly related to this topic it is worth noting that you cannot use any non-stringable types in your store if using this zustand-persist. The reason being that...
Very weird. For a moment that happened to me, but then I stopped/restarted the metro bundler and it all cleared up. I'm a bit busy today but I'd be interested...
I don’t have an immediate suggestion for that, but what I did to test was copy the source files to my project and import them from there instead of the...
Not spamming, this is helpful! I'll try to take a look at it tonight to see if I can add anything useful.
I'm happy to try and help debug this further, but I am very unfamiliar with the internals of both hono and vitest and would need some guidance on where to...
Well, that solves it by side stepping `vite.config.ts` which means the Cloudflare adapter is no longer being loaded. This also works: ``` // vitest.config.ts import { defineConfig } from "vitest/config";...