h3llo
h3llo
Explore posts from servers
PPrisma
Created by Markigno on 4/16/2025 in #help-and-questions
Eslint errors
..and to pretty much every ignore file you can, since you can look at this like a part of node_modules
7 replies
PPrisma
Created by Markigno on 4/16/2025 in #help-and-questions
Eslint errors
add it to the eslint (and tsconfig) ignore as well
7 replies
PPrisma
Created by h3llo on 4/11/2025 in #help-and-questions
prisma-client provider can't be used with multiple generators
thanks for the reply, I guess i'll downgrade to 6.5.0 and use the old prisma-client-js without generated directory since none of it is still ready
4 replies
PPrisma
Created by Kazaz on 4/10/2025 in #help-and-questions
Prisma 6.6.0 ESM with Nx Monorepo - Typescript type check failures
getting the same issue (as well as all others mentioned above)
22 replies
TtRPC
Created by h3llo on 12/26/2024 in #❓-help
subscription tracked returns a 3-tuple to frontend instead of object
The current workaround to make both runtime and ts happy is to use yield* tracked instead of yield tracked, which returns TrackedId | someObject and then handle each case
if (typeof event === 'object') {
console.log('From onData callback, object data', event);
} else {
console.log('From onData callback, trackedId', event);
}
if (typeof event === 'object') {
console.log('From onData callback, object data', event);
} else {
console.log('From onData callback, trackedId', event);
}
but this is not optimal...
3 replies