Fauzan Lubis
Fauzan Lubis
> I think the problem based on `ajv` do not know how to deal with `BigInt`. Isn't there a BigInt serializer to Number on fastify-json-stringify though?
> When using `anyOf` (`Type.Union`), the data will validate through `ajv` first. Ahhh I see how it is, so the culprit here are `ajv`
Hi there @macrozone! - The react-admin component I show on my issues are basically the component that you guys made but I made a little bit of changes so it'll...
@macrozone Hmm that's weird for sure. I'll try to maybe see the React DevTools Profiler to see what causes the constant update of the Slate editor. But if you do...
@macrozone A little update again, I've tried to clone the example and try to run it. But whenever I tried to edit the text, the same thing would happened again....
Ah right, I did change some part of it. Mainly changing the react version and to use react admin 4. The full code can be seen in my [repository](https://github.com/fauh45/react-page-examples).
> the problem is that you use react 18, which unfortunatly does not work yet #1173 I did change the the settings as #1173 does tho, and for the most...
@macrozone *Another update* I tried using react 17 and try to match the dependencies as close as the example in StackBlitz, and it works, no more freezing nor high CPU...
We ended up using React 17 as it was not detrimental to us. But if I go free time to come, for sure I'll be trying out the changes!
So I've implemented the following, ```rust use clickhouse::Row; use serde::Serialize; pub mod fixed_string { use serde::{ser::Serializer, Serialize}; pub fn serialize( str: &str, ser: S, ) -> Result { let str_bytes...