Manqo
Explore posts from serversTTCTheo's Typesafe Cult
•Created by Manqo on 3/23/2025 in #questions
Fetching User Session Data on the Client Side with useSession
Hello! I'm having trouble retrieving the logged-in user's information on the client side. I need the user information for my component, but how should I fetch the current user's session data?
Here is my code:
With this code, I get the following error:
Should I wrap my layout with SessionProvider, or is there a better way to get the current session on the client side?
20 replies
TTCTheo's Typesafe Cult
•Created by Manqo on 3/12/2025 in #questions
Handling Async Params and Suspense Queries in a T3 Stack Next.js App
I'm having issues with fetching data for my story/[storyId]/page.tsx component.
What kind of options do I have here? It seems that id requires await, while useSuspenseQuery requires a server component.
How should I tackle this issue using the T3 stack?
5 replies
PPrisma
•Created by Manqo on 10/9/2024 in #help-and-questions
I’m trying to fix an error I’m encountering in my Prisma code: This expression is not callable.
What im trying to accomplish is that when user creates an new record, we give it highest sortOrder.
The error occurs in the findFirst function, and here's the message I’m seeing:
Additionally, I'm getting another error at the create function, which reads:
Here’s the relevant code:
3 replies
PPrisma
•Created by Manqo on 9/25/2024 in #help-and-questions
Deleting User Account and All Related Data
I'm implementing a way for users to delete all their related data using Next.js 14 with App Router. This is my server action to handle data deletion after user confirmation:
This is the frontend function that gets called when confirm is clicked:
11 replies