diff --git a/src/routes/data/season/+page.svelte b/src/routes/data/season/+page.svelte index 589c7aa..548a89a 100644 --- a/src/routes/data/season/+page.svelte +++ b/src/routes/data/season/+page.svelte @@ -18,6 +18,8 @@ RACE_PICTOGRAM_WIDTH, TEAM_BANNER_HEIGHT, TEAM_BANNER_WIDTH, + TEAM_LOGO_HEIGHT, + TEAM_LOGO_WIDTH, } from "$lib/config"; let { data, form }: { data: PageData; form: ActionData } = $props(); @@ -61,8 +63,8 @@ label: team.name, value: team.id, icon_url: team.logo_url, - icon_width: TEAM_BANNER_WIDTH, - icon_height: TEAM_BANNER_HEIGHT, + icon_width: TEAM_LOGO_WIDTH, + icon_height: TEAM_LOGO_HEIGHT, }); });