Luke
Luke
TtRPC
Created by Luke on 7/23/2024 in #❓-help
Next.js/tRPC Prefetch w/ HydrateClient "Error occurred prerendering page"
I FIXED IT! Stupid mistake, I wasn't marking the root page function that was performing the prefetch as async... i.e: Broken:
export default function QueuePage() {
export default function QueuePage() {
Fix:
export default async function QueuePage() {
export default async function QueuePage() {
4 replies
TtRPC
Created by Luke on 5/10/2024 in #❓-help
tRPC useQuery with skipToken
Nevermind, this idiot wasn't on tRPC v11. Just did the upgrade, was pretty painless. Shoutout to the tRPC team. I'll leave this up incase anyone else experiences a similar issue and goes down the rabbithole. UPGRADE TO V11 TO GET SKIPTOKEN TO WORK!
4 replies