diff --git a/src/routes/stocks/[tickerID]/statistics/fail-to-deliver/+page.svelte b/src/routes/stocks/[tickerID]/statistics/fail-to-deliver/+page.svelte index fd692d5c..3c90a21f 100644 --- a/src/routes/stocks/[tickerID]/statistics/fail-to-deliver/+page.svelte +++ b/src/routes/stocks/[tickerID]/statistics/fail-to-deliver/+page.svelte @@ -21,7 +21,7 @@ (rawData?.slice(-1)?.at(0)?.failToDeliver / data?.getStockQuote?.avgVolume) * 100 - )?.toFixed(2) + "%" + )?.toFixed(2) : "n/a"; function computeYearOverYearChange(rawData) { @@ -141,7 +141,11 @@
- {relativeFTD > 0.01 ? relativeFTD : "< 0.01%"} + {relativeFTD > 0.01 + ? relativeFTD + "%" + : relativeFTD !== "n/a" + ? "< 0.01%" + : "n/a"}