Update unranked icon to outlined version
Some checks are pending
E2E Tests / e2e (push) Waiting to run
Tests and checks on push / run-checks-and-tests (push) Waiting to run
Updates translation progress / update-translation-progress-issue (push) Waiting to run

This commit is contained in:
Kalle
2026-06-02 17:29:42 +03:00
parent 1bae38522e
commit 77c2563cab
3 changed files with 1 additions and 1 deletions

View File

@@ -501,7 +501,7 @@ export const stageImageUrl = (stageId: StageId) =>
export const stageBannerImageUrl = (stageId: StageId) =>
`/static-assets/img/stage-banners/${stageId}.avif`;
export const tierImageUrl = (tier: TierName | "CALCULATING") =>
`/static-assets/img/tiers/${tier.toLowerCase()}`;
`/static-assets/img/tiers/${tier === "CALCULATING" ? "unranked" : tier.toLowerCase()}`;
export const controllerImageUrl = (controller: string) =>
`/static-assets/img/controllers/${controller}.avif`;
export const preferenceEmojiUrl = (preference?: Preference) => {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB