Armedi

Results 7 comments of Armedi

@Yan-Thomas have you found a solution for this?

> For future visitors, there's a simple solution: https://react-dnd.github.io/react-dnd/examples/dustbin/iframe This solution doesn't work for me. The example shows dragging item within the iframe, not from outside to inside iframe. I...

I fixed this issue by using the old `ReactDOM.render(...)` instead of `ReactDOM.createRoot(...).render(...)`

Same issue here. We are trying to migrate our CRA based apps to Next.js. Majority of team members are using windows

I got this same error when running `prisma migrate dev` after following all steps from [here](https://www.prisma.io/docs/getting-started/setup-prisma/add-to-existing-project/relational-databases/baseline-your-database-typescript-postgres) ``` Error: P3006 Migration `0_init` failed to apply cleanly to the shadow database. Error:...

I got migration running by updating the `prisma/migrations/0_init/migration.sql` ```diff diff --git a/prisma/migrations/0_init/migration.sql b/prisma/migrations/0_init/migration.sql index b21b860..5fa1d42 100644 --- a/prisma/migrations/0_init/migration.sql +++ b/prisma/migrations/0_init/migration.sql @@ -26,7 +26,7 @@ CREATE TABLE "auth"."identities" ( "last_sign_in_at" TIMESTAMPTZ(6),...

running `pg_dump` and comparing the output with the generated sql `0_init` helped in finding this fix for the problem I'm running into > I got migration running by updating the...