diff --git a/src/lib/components/AIScore.svelte b/src/lib/components/AIScore.svelte
index e212b044..d9e809a0 100644
--- a/src/lib/components/AIScore.svelte
+++ b/src/lib/components/AIScore.svelte
@@ -23,22 +23,6 @@
@@ -73,14 +57,7 @@
stroke-width="3"
stroke-dasharray="100.48"
stroke-dashoffset={100.48 -
- ((tier === "Pro" ||
- ["AAPL", "NVDA", "GOOGL", "META", "AMD"]?.includes(
- $stockTicker,
- )
- ? score
- : 0) /
- 10) *
- 100.48}
+ ((tier === "Pro" ? score : 0) / 10) * 100.48}
>
@@ -90,11 +67,7 @@
y="21"
text-anchor="middle"
font-size="10"
- fill="#000"
- >{tier === "Pro" ||
- ["AAPL", "NVDA", "GOOGL", "META", "AMD"]?.includes($stockTicker)
- ? score
- : 0}{tier === "Pro" ? score : 0}
@@ -102,7 +75,7 @@
- {#if tier === "Pro" || ["AAPL", "NVDA", "GOOGL", "META", "AMD"]?.includes($stockTicker)}
+ {#if tier === "Pro"}
{score}
@@ -134,7 +107,7 @@