Dylan Markow

Results 26 comments of Dylan Markow

Looks like a [fix was merged in react-native](https://github.com/facebook/react-native/pull/34214/files). Until it's released, adding this to my `post_install` block in `ios/Podfile` fixed it (I have no idea if the issue affects Android...

@lvothnrv In you `ios/Podfile`, there should be a line that starts with `post_install do |installer|`. Put this inside that.

@lvothnrv Did you run `pod install` again after adding this? If so, then I'm not sure what else to add...

@barbinbrad At least for this specific issue, 1.9.0 worked fine for me. 1.10.0 is where the issue started (when Remix fully switched to the new router).

Cleaning up my issues and it looks like this got resolved starting in 1.12.0 (probably the react-router update to 6.8.0).

Looks like this is the problem. https://github.com/remix-run/remix/blob/006b58bfec02622f9881c1e37444baef60584eda/packages/remix-server-runtime/serialize.ts#L21-L31 https://github.com/remix-run/remix/blob/006b58bfec02622f9881c1e37444baef60584eda/packages/remix-server-runtime/responses.ts#L9-L14 `TypedDeferredData` matches on our result because there is a data key, instead of moving down to `SerializeObject` which it should since I'm...

Just updated to remove the caching logic in `server.ts`, as @brophdawg11 mentioned an API change will be coming that will not require this in the future.

I can confirm emotion actually broke from this and it wasn't just a harmless/annoying warning (react-select uses it and the drop-downs become unusable). My only options were rolling back to...

@pcattori Just fixed the tests (looks like an existing fixture changed paths)

Looks like this changed in 3.7.2. Timex 3.7.1 has correct output: ``` iex(1)> [~D(2023-04-28), ~D(2023-04-29), ~D(2023-04-30), ~D(2023-05-01)] |> Enum.map(&Timex.format!(&1, "{Wsun}")) ["17", "17", "18", "18"] ``` Timex 3.7.2 has the wrong...