From 5179707d0f4cae0f5ce02198c9cea48e7f22b356 Mon Sep 17 00:00:00 2001 From: Hayden Hargreaves Date: Sat, 31 Jan 2026 10:18:36 -0700 Subject: [PATCH] (FIX): Fixed profile display issue. --- web/src/pages/Profile.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/web/src/pages/Profile.tsx b/web/src/pages/Profile.tsx index 1d97f58..058a111 100644 --- a/web/src/pages/Profile.tsx +++ b/web/src/pages/Profile.tsx @@ -115,8 +115,8 @@ export default function Profile() {

{user?.Email}

-

{recipes.length} recipes

-

{favorites.length} favorites

+

{recipes?.length ?? 0} recipes

+

{favorites?.length ?? 0} favorites

@@ -126,10 +126,10 @@ export default function Profile() {

My Recipes