Danny Kim

Results 6 comments of Danny Kim

@PhilippMolitor Hello! Thank you for trying `nexus-validation-plugin`. May I ask what kind of error you experienced when you tried the plugin? I would like to work on a fix if...

I opened a small PR to solve this issue here #8195

> Would you like a CSS detection for the vertical screen So something like `@media (min-aspect-ratio: 8/5)` ?

Throwing in some ideas here: ```ts type Parser = (val: unknown) => T; const customSchema = (parser: Parser) => z.unknown().transform(parser); // Now you can define your own zod schema like...

Looks like a good idea. I think this should be stored on client side as key-value pairs (chatId, draftString). One thing we can decide is if we want to persist...

@meohyun2 In that case, we probably need to use indexed DB for web & expo-sdk-sqlite for mobile. An abstraction layer (how about `DraftStore` class?) should be added for clean interface.