chrishoermann
chrishoermann
I fixed it by importing from ```ts import OpenStreetMapProvider from "leaflet-geosearch/lib/providers/openStreetMapProvider.js"; ```
since updating to the latest version I cannot start prisma studio too: Browser says: ERR_EMPTY_RESPONSE localhost did not send any data
@lilingxi01 you could try my new generator that I just published [zod-prisma-types](https://www.npmjs.com/package/zod-prisma-types) that lets you just create the `zod-schemas` for the models as you mentioned. Additionally you can write custom...
@willscottrod didyou figure out what the problem was? I never encountered this issue in my projects. 🤔
@atanaskanchev thank's for the report. I'm aware of this issue and currently working on a fix for that. This has to do with an updated `Prisma XOR` type that does...
@atanaskanchev this seems to be a bit of a complex issue. I've started a [discussion on the zod page](https://github.com/colinhacks/zod/discussions/2171) on how this could be resolved.
Opened an issue in the zod repo: https://github.com/colinhacks/zod/issues/2184
@sylver sorry for the late response and thanks for diving into this. As you mentioned, it seems to be a more precise approach to only look for the dependency in...
Since there is no movement on the zod issue I thought of a rude override to enable the use of zod version greater than `3.21.1`: The simple solution for now...
please try setting the following options in your tsconfig.json: ``` strict: true, strictNullChecks: true, ``` this should fix the issue. the useTypeAssertions flag does also work but was intended as...