Generally a response from tRPC server looks like:
{
"result": {
"data": "OK!"
}
}
But what I need is only:
OK!
How do I attain this?
Sorry for asking this silly question. I'm new to this tRPC thing and still figuring things out.