From 88e45271b1546cf4496a0940cd74ae17ef646b5f Mon Sep 17 00:00:00 2001 From: Matthew Russell Date: Wed, 3 Jan 2024 15:44:39 +0000 Subject: [PATCH] feat: wire up avatar --- apps/trading/client-pages/team/team.tsx | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/apps/trading/client-pages/team/team.tsx b/apps/trading/client-pages/team/team.tsx index 274dbf92e..ab0e2bc8c 100644 --- a/apps/trading/client-pages/team/team.tsx +++ b/apps/trading/client-pages/team/team.tsx @@ -57,7 +57,7 @@ export const TeamPage = ({
- +

{team.name} @@ -201,10 +201,15 @@ const Games = () => { ); }; -const TeamAvatar = () => { +const TeamAvatar = ({ imgUrl }: { imgUrl: string }) => { // TODO: add fallback avatars return ( -
+ // eslint-disable-next-line @next/next/no-img-element + Team avatar ); };