From 34857887ada5f61ed6e9e2f0345b508d6152f2bc Mon Sep 17 00:00:00 2001 From: Kalle <38327916+Sendouc@users.noreply.github.com> Date: Sat, 1 Aug 2026 10:05:28 +0300 Subject: [PATCH] Season summary don't show peak SP if same as final SP --- .../img-export/components/SeasonSummaryGraphic.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/app/features/img-export/components/SeasonSummaryGraphic.tsx b/app/features/img-export/components/SeasonSummaryGraphic.tsx index 9ba63f850..c28216ebd 100644 --- a/app/features/img-export/components/SeasonSummaryGraphic.tsx +++ b/app/features/img-export/components/SeasonSummaryGraphic.tsx @@ -184,9 +184,11 @@ export function SeasonSummaryGraphic({ {tier.isPlus ? "+" : ""}
{sp.toFixed(1)}SP
-
- {t("user:seasons.peak")} {peakSp.toFixed(1)}SP -
+ {peakSp.toFixed(1) === sp.toFixed(1) ? null : ( +
+ {t("user:seasons.peak")} {peakSp.toFixed(1)}SP +
+ )} {typeof soloRank === "number" ? (