Compare commits

...

2 Commits

Author SHA1 Message Date
dd361b1b12 fix(sprint-5/etapa-4b): library useEffect usa user.id no user ref — corta contención processLock en guardar perfil
Some checks failed
/ Deploy to Cloudflare Pages (push) Has been cancelled
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-20 00:57:16 -03:00
224b3bc5e7 debug(sprint-5/etapa-4b): logs temporales en ProfileSheet para diagnosticar loop
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-20 00:52:21 -03:00

View File

@@ -757,7 +757,7 @@ export function LibraryPage() {
useEffect(() => {
if (!user) return // no fetchear hasta tener usuario confirmado (evita race condition con sesión Supabase)
load()
}, [load, user])
}, [load, user?.id])
function navigateToGroup(groupId: string | null) {
setTransitioning(true)