diff --git a/app/components/DraftGrid.tsx b/app/components/DraftGrid.tsx index f9d338a..0dfc599 100644 --- a/app/components/DraftGrid.tsx +++ b/app/components/DraftGrid.tsx @@ -7,7 +7,7 @@ import { import { DraftPickCell, type CoronaState } from "~/components/draft/DraftPickCell"; import { TeamAvatar } from "~/components/TeamAvatar"; import type { SeasonStatus } from "~/models/season"; -import type { RawFlagConfig } from "~/lib/flag-types"; +import type { AvatarData, RawFlagConfig } from "~/lib/flag-types"; interface DraftCell { pickNumber: number; @@ -26,6 +26,7 @@ interface DraftGridProps { logoUrl?: string | null; flagConfig?: RawFlagConfig | null; avatarType?: string | null; + ownerAvatarData?: AvatarData | null; }; }>; draftGrid: Array>; @@ -84,6 +85,7 @@ export function DraftGrid({ logoUrl={slot.team.logoUrl} flagConfig={slot.team.flagConfig} avatarType={slot.team.avatarType} + ownerAvatarData={slot.team.ownerAvatarData} size="lg" /> diff --git a/app/components/UserMenu.tsx b/app/components/UserMenu.tsx index d8f3d12..4c74e52 100644 --- a/app/components/UserMenu.tsx +++ b/app/components/UserMenu.tsx @@ -32,7 +32,7 @@ export function UserMenu({ return ( -