From 543796740b1340ca7b08fbc77f0cc8c66e2a38f9 Mon Sep 17 00:00:00 2001 From: Primakov Alexandr Alexandrovich Date: Thu, 27 Mar 2025 13:54:09 +0300 Subject: [PATCH] user page reactions fix --- src/pages/user-page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/user-page.tsx b/src/pages/user-page.tsx index ba4cc2f..67c6e9b 100644 --- a/src/pages/user-page.tsx +++ b/src/pages/user-page.tsx @@ -277,7 +277,7 @@ const UserPage = () => { student={student} present={true} recentlyPresent={student.isNew} - reactions={ls.data?.body?.reactions?.filter(r => r.sub === student.sub) || []} + reactions={ls.data?.body?.studentReactions?.filter(r => r.sub === student.sub) || []} /> ))}