Danny Kim
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.
@slorber Would you look at #8328 and let me know what you think?
Yes, I think this is resolved by the `catch` method.
Hi, I opened a simple PR for displaying an error message! Is there a convention for adding strings to the code? I just used string literal because the dev docs...