maddest
Unable to use caller, in frontend bcz i dont have access to req and res objects
i was trying to use trpc callers, for ssr the queries, but i was not able to create one since i have req and res objects in my context, where my context looks like
it asks me to give it req and res objects which i cannot do, to use it, is there some way through which i can use the same trpc endpoints, so that i can also use them in server components?
This is my trpr Provider Wrapper
this is my trpc client, which i am using in client components,
3 replies
TRPCError class, public readonly cause?: Error; this line should have override function
hey i am trying to use the TRPCError for throwing errors in my apps, but i am getting this error, changing the line
from
public readonly cause?: Error;
to public override readonly cause?: Error;
fixes the problem the problem but i am doing that in node_modules which is not how this gets resolved,
how do i resolve this?
when trying to use module arugmentation, i am getting an dupliate declare class error meaning the TRPCError class has already be declared in TRPCError.d.ts file
please help me resolve this issue,
my @trpc/server and @trpc/client version is
my typescript version is above 5
i am using turborepo,
this error was not there before, but since i was doing some migration of my trpc code to a seperate trpc package, i am getting these errrors23 replies