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 ); };