Chan Thinh Luu
Chan Thinh Luu
Hi @keeganstreet, I encountered a similar issue with the `font-face` in `globalStyles`. To address this, I moved all my `font-face` declarations to `index.css`, which successfully resolved the problem.
Hi @sepukus, Can you move all your `@font-face` to `style.css`? Maybe it will works
Hi @dstoyanoff, You mean: ```ruby import { z } from 'zod'; const user = z.object({ username: z.string().superRefine((value) => value.length >= 1), location: z.object({ latitude: z.number(), longitude: z.number(), }), strings: z.array(z.object({...
@dstoyanoff, You can check this one: https://stackblitz.com/edit/typescript-zgzrzk?file=schemas%2FschemaWithDefaultType.ts and change strict to false Hope this help you ```ruby { "include": ["./src/*"], "compilerOptions": { "esModuleInterop": true, "strict": false } } ```
@dstoyanoff, yah I know, glad to help you
Hi @JolianGof, You are missing `firstName` and `age` in your schema, add these to your schema and try again ```ruby export const formSchema = object({ lastName: string([ minLength(1, "This field...
@JolianGof, I understand what you want, so you can try to use `yupResolver` Check this one: https://codesandbox.io/p/sandbox/react-hook-form-yup-resolver-forked-4k44jg?file=%2Fsrc%2FcolorScheme.js%3A11%2C4