yann
yann
The resources and gallery screens throw an error for me.
Hello, is there any way to enter a line break into the typed text? When I use ``, it simply gets printed to the screen.
# Bug report ## Describe the bug Postgres allows the creation of generated columns: https://www.postgresql.org/docs/current/ddl-generated-columns.html. Inserting a value into such a column throws an error: https://www.tutorialsteacher.com/postgresql/generated-always. Supabase includes these columns...
A dark theme would be highly appreciated for us nocturnal creatures. 🦉
```ts // PlausibleProvider.d.ts scriptProps?: React.DetailedHTMLProps; ``` **Error:** ```ts Object literal may only specify known properties, and ''data-api'' does not exist in type 'DetailedHTMLProps' ``` **Solution for now:** ```ts // @ts-expect-error...
I have attached a video to show the problem. Once I wrap my next.js config in `withPlausibleProxy` the union type with `Route` becomes too complex. Type checking also becomes extremely...
## extension ### settings ```json "open-in-vim.useNeovim": true, "open-in-vim.openMethod": "macos.iterm", ``` ### iterm output ```shell /var/folders/mj/58p0n9595_37gkb9nty4ckwm0000gn/T/tmp-86850R6boowUGSfbF.tmp: line 3: nvim: command not found ``` ## script editor ### does not work -...
# Improve documentation ## Link https://supabase.com/docs/reference/javascript/select ## Describe the problem See the release notes here: https://nextjs.org/blog/next-13-2#nextjs-cache It is not clear how to take advantage of this feature when fetching data...
Typechat currently assumes that schemas are self-contained in one file. In reality, schemas are often spread out over multiple files. Ideally, typechat would enable the usage of multi-file schemas out...
```ts /** * An object representing a successful operation with a result of type `T`. */ export type Success = { success: true; data: T; }; /** * An object...