diff --git a/apps/hackathon/src/app/dashboard/page.tsx b/apps/hackathon/src/app/dashboard/page.tsx index f12d389..e07863a 100644 --- a/apps/hackathon/src/app/dashboard/page.tsx +++ b/apps/hackathon/src/app/dashboard/page.tsx @@ -134,48 +134,60 @@ const DashboardPage: FC = (): ReactElement => {

My Team

-
- {myTeams.map((team) => ( +
+ {myTeams.map((team: any) => ( - {team.banner && ( -
- {team.name} -
- )} + {team.name}
-
- {team.logo && ( +
+ {team.logo ? ( {team.name} + ) : ( +
+ +
)} -
-

+
+

{team.name}

-

- - {team.city} -

+
+ {team.has_submission && ( + + + Submitted + + )} + {team.city && ( + + + {team.city} + + )} + + + {team.member_count || team.members?.length || 0} member{(team.member_count || team.members?.length || 0) !== 1 ? 's' : ''} + +

-

- {team.description} -

+ {team.description && ( +

+ {team.description} +

+ )}
))}