diff --git a/web/src/lib/components/ScoreCard.svelte b/web/src/lib/components/ScoreCard.svelte index 11e5396..523940f 100644 --- a/web/src/lib/components/ScoreCard.svelte +++ b/web/src/lib/components/ScoreCard.svelte @@ -5,10 +5,11 @@ interface Props { grade: string; score: number; + reanalyzing?: boolean; summary?: ScoreSummary; } - let { grade, score, summary }: Props = $props(); + let { grade, score, reanalyzing, summary }: Props = $props(); function getScoreLabel(score: number): string { if (score >= 90) return "Excellent"; @@ -19,25 +20,22 @@ } - -
Overall Deliverability Score
{#if summary} @@ -94,3 +92,16 @@ {/if}