unnoq
unnoq
Below is my config ```json { "$schema": "https://ui.shadcn.com/schema.json", "style": "default", "rsc": true, "tailwind": { "config": "tailwind.config.js", "css": "styles/globals.css", "baseColor": "zinc", "cssVariables": true }, "aliases": { "components": "~/components", "utils": "~/utils" }...
```ts const [manager, setManager] = useLocalStorage('package-manager', 'pnpm') ``` Expected: `manager` cannot be null when I set initial value Actual: `manager` can be null
### What version of `drizzle-orm` are you using? 0.28.6 ### What version of `drizzle-kit` are you using? _No response_ ### Describe the Bug Code ```ts const userNames = ['Acme Corp',...
Hi, I'm the author of **oRPC**, a library for typesafe API. I'm exploring the possibility of integrating oRPC with `pinia-colada`. However, I've encountered a limitation with the way `pinia-colada` handles...
First off, a big thank you to @colinhacks for caring a small lib like oRPC ^ ^ ### Option: Separate `required` Flag from the Schema Sometimes you need to know...
**Old Behavior:** `.mutate`, `.mutateAsync`, ... allowed omitting the `variables` parameter only when its type was exactly `void`. However, in TypeScript, when using union types like `unknown | void`, the `void`...
**Describe the bug** @tinyhttp/content-disposition not work when file name is empty **To Reproduce** ```ts import { contentDisposition, parse } from '@tinyhttp/content-disposition' it('should works when file name is empty', () =>...