diff --git a/backend/src/app.ts b/backend/src/app.ts index 88a117e..10a10d5 100644 --- a/backend/src/app.ts +++ b/backend/src/app.ts @@ -599,6 +599,7 @@ const normalizePublicBirdProfile = (row: BirdRow) => ({ id: row.id, workspaceId: row.workspace_id, name: row.name, + favoriteSnack: row.favorite_snack, gender: row.gender, dateOfBirth: row.date_of_birth, photoDataUrl: getBirdPhotoUrl(row), diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index c1fe052..c3bd2b6 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -203,6 +203,7 @@ type PublicBirdProfile = { id: string; workspaceId: number; name: string; + favoriteSnack: string | null; gender: BirdGender; dateOfBirth: string | null; photoDataUrl: string | null; @@ -3587,6 +3588,7 @@ function App() { return (
+ FlockPal {publicProfileLoading || authLoading ? (

Loading bird profile...

) : publicProfileError || !publicProfile ? ( @@ -3609,6 +3611,10 @@ function App() { Hatch Day {formatDate(publicProfile.dateOfBirth)} +
+ Favorite treat + {publicProfile.favoriteSnack || 'Not recorded'} +
{publicProfileWorkspaceMembership ? (