diff --git a/src/lib/components/AIScore.svelte b/src/lib/components/AIScore.svelte index 5b9768ec..e6c7a1af 100644 --- a/src/lib/components/AIScore.svelte +++ b/src/lib/components/AIScore.svelte @@ -57,7 +57,8 @@ stroke-width="3" stroke-dasharray="100.48" stroke-dashoffset={100.48 - - ((tier === "Pro" ? score : 0) / 10) * 100.48} + ((["Pro", "Plus"]?.includes(tier) ? score : 0) / 10) * + 100.48} > @@ -67,7 +68,7 @@ y="21" text-anchor="middle" font-size="10" - fill="#000">{tier === "Pro" ? score : 0}{["Pro", "Plus"]?.includes(tier) ? score : 0} @@ -75,7 +76,7 @@