Pedro Sanchez

Results 58 comments of Pedro Sanchez

I believe this issue could be closed since the team already helped me understand that the right way to query null values is using the helper function [`isNull`](https://orm.drizzle.team/docs/operators#isnull) https://discord.com/channels/1043890932593987624/1084576896039260202/threads/1115269692274249839

I'm using `5.0.0-beta.15` and I can confirm that setting `AUTH_URL` or `NEXTAUTH_URL` breaks the app.

This happens even without validations and many other stuff this is a simpler code sandbox https://codesandbox.io/p/sandbox/xenodochial-cloud-87fvfz

@crutchcorn I'm currently using react-hook-form, I managed to make it work with 999+ without virtualization, but with a few caveats: 1. Cannot access the `formState: { error }`, it slows...

BTW I worked around it with this: ```tsx { if (e.key === "ArrowLeft" || e.key === "ArrowRight") { e.stopPropagation() } }} /> ```

When we switch worktrees the previous LSP is still running, so it ends up having two instances of the same LSP @ahmedkhalf ### This is the output of `:LspInfo` from...

@dr5hn What do you think? I believe this should be a different table. If you want to merge, is there anything else that I should modify in the repo? Maybe...

This is blocking me, mine has `dd-MM-yyyy` and it behaves as `MM-dd-yyyy`

In my case I was using `new Date("dd-MM-yyyy")` making the component behave like `MM-dd-yyyy`, now I use `parse()` from `date-fns` to get the right date from that format, it works