diff --git a/src/lib/components/AIScore.svelte b/src/lib/components/AIScore.svelte index d6674ead..21fbd1c9 100644 --- a/src/lib/components/AIScore.svelte +++ b/src/lib/components/AIScore.svelte @@ -8,7 +8,7 @@ $: { if ($stockTicker && typeof window !== 'undefined') { // Correctly check if score is neither undefined nor null - $scoreComponent = score !== undefined && score !== null; + $scoreComponent = score !== undefined && score !== null && score !== 0; } }