conduongtong
conduongtong
### Prerequisites - [X] I have written a descriptive issue title - [X] I have searched existing issues to ensure the feature has not already been requested ### 🚀 Feature...
## Problem You can read the problem in here: https://github.com/prisma/prisma/discussions/22561 This problem causes incorrect ordering in one-to-many and many-to-many relationships. ## Suggested solution Maybe when using: ```ts await prisma.post.findFirst({ include:...
### NextUI Version 2.4.6 ### Describe the bug I extend Autocomplete like this: ```ts 'use client'; import { Autocomplete as BaseAutocomplete, extendVariants, type AutocompleteProps } from '@nextui-org/react'; import { AutocompleteItem,...
### NextUI Version 2.4.6 ### Describe the bug Tailwind merge newer version added some new default config such as: ```ts 'text-wrap': [{ text: ['wrap', 'nowrap', 'balance', 'pretty'] }], ``` For...
I follow this instruction: https://elysiajs.com/patterns/reference-models.html With this code: ```ts // auth.model.ts import { Elysia, t } from 'elysia' export const authModel = new Elysia() .model({ sign: t.Object({ username: t.String(), password:...