diff --git a/src/components/Dashboard/DashboardPage.tsx b/src/components/Dashboard/DashboardPage.tsx index e03829635..9801283cd 100644 --- a/src/components/Dashboard/DashboardPage.tsx +++ b/src/components/Dashboard/DashboardPage.tsx @@ -44,9 +44,10 @@ export function DashboardPage(props: DashboardPageProps) { getAllTeams().finally(() => setIsLoading(false)); }, []); - const userAvatar = currentUser?.avatar - ? `${import.meta.env.PUBLIC_AVATAR_BASE_URL}/${currentUser.avatar}` - : '/images/default-avatar.png'; + const userAvatar = + currentUser?.avatar && !isLoading + ? `${import.meta.env.PUBLIC_AVATAR_BASE_URL}/${currentUser.avatar}` + : '/images/default-avatar.png'; return (
diff --git a/src/components/Dashboard/TeamDashboard.tsx b/src/components/Dashboard/TeamDashboard.tsx index 1f9e617b8..c006703db 100644 --- a/src/components/Dashboard/TeamDashboard.tsx +++ b/src/components/Dashboard/TeamDashboard.tsx @@ -7,6 +7,7 @@ import { LoadingProgress } from './LoadingProgress'; import { ResourceProgress } from '../Activity/ResourceProgress'; import { TeamActivityPage } from '../TeamActivity/TeamActivityPage'; import { cn } from '../../lib/classname'; +import { Tooltip } from '../Tooltip'; type TeamDashboardProps = { teamId: string; @@ -120,17 +121,18 @@ export function TeamDashboard(props: TeamDashboardProps) { ? `${import.meta.env.PUBLIC_AVATAR_BASE_URL}/${member.avatar}` : '/images/default-avatar.png'; return ( -
- {member.name -
{member.name}
-
+ +
+ {member.name +
+ + {member.name} + +
); })}