diff --git a/src/lib/components/TickerInfoCard.svelte b/src/lib/components/TickerInfoCard.svelte
index b094629e..c6bff573 100644
--- a/src/lib/components/TickerInfoCard.svelte
+++ b/src/lib/components/TickerInfoCard.svelte
@@ -125,9 +125,9 @@ $: {
-->
| Bid |
- {$wsBidPrice !== 0 && $wsBidPrice !== null ? $wsBidPrice : data?.getStockQuote?.bid} |
+ {$wsBidPrice !== 0 && $wsBidPrice !== null ? $wsBidPrice : (data?.getStockQuote?.bid ?? '-')} |
Ask |
- {$wsAskPrice !== 0 && $wsAskPrice !== null ? $wsAskPrice : data?.getStockQuote?.ask} |
+ {$wsAskPrice !== 0 && $wsAskPrice !== null ? $wsAskPrice : (data?.getStockQuote?.ask ?? '-')} |
| Mkt Cap |
@@ -159,7 +159,7 @@ $: {
Open |
{data?.getStockQuote?.open?.toFixed(2)} |
Prev. Close |
- {data?.getStockQuote?.previousClose?.toFixed(2)} |
+ {data?.getStockQuote?.previousClose?.toFixed(2) ?? '-'} |