Vantroy
Vantroy
@westprophet @zimenu In my case, I am using windows and facing the same problem. But I already fixed it in this PR https://github.com/vinissimus/next-translate/pull/472. You can try it by using next-translate...
I don't know why. But vscode always suggest to import ``` import useTranslation from 'next-translate/lib/esm/useTranslation' ``` instead of ``` import useTranslation from 'next-translate/useTranslation' ``` 
@aralroca That is great!
How to customize the SnackbarContainer style in v3? I want to change the position of it. Now, I use the global style. ```tsx ```
After upgrading to `5.15.17` the position has been fixed, but `'&:hover': { background: 'red' }` still applies to every elements.
> It's interesting that it works well with ThemeProvider: https://stackblitz.com/edit/react-ceuj3r-qlzp31?file=Demo.tsx or without any theme provider: https://stackblitz.com/edit/react-ceuj3r-ybpmz3?file=Demo.tsx. It seems to be an issue specifically with `CssVarsProvider`. What is the current plan...
It should support mixing between non-raw and raw. ```js prisma.user.findMany({ where: { AND: [ { name: 'Hello' }, raw`updated_at > created_at + INTERVAL '1 hour'`, ] }, }) ```
Will switching query Compiler from Rust to Typescript reduce memory usage for large queries?
@matthewmueller `@db.Time` should accept a time as string too. e.g. ```js const store = await prisma.store.create({ data: { openTime: '10:00:00', closeTime: '20:00:00', } }); ```