diff --git a/components/converter/converter-card.tsx b/components/converter/converter-card.tsx
index 080d274..e4ddc7e 100644
--- a/components/converter/converter-card.tsx
+++ b/components/converter/converter-card.tsx
@@ -12,7 +12,7 @@ import {
CardContent,
CardDescription,
CardHeader,
- CardTitle
+ CardTitle,
} from "@/components/ui/card";
import { Input } from "@/components/ui/input";
import { Separator } from "@/components/ui/separator";
@@ -23,7 +23,7 @@ import {
formatAmount,
formatInverseRate,
formatRate,
- formatTimestamp
+ formatTimestamp,
} from "@/lib/format";
import { buildRateMap, convertAmount } from "@/lib/rates";
import { validateAmount } from "@/lib/validation";
@@ -62,7 +62,7 @@ function ConverterSkeleton() {
function ErrorState({
message,
- onRetry
+ onRetry,
}: {
message: string;
onRetry: () => void;
@@ -73,11 +73,17 @@ function ErrorState({
-
Unable to load market rates
+
+ Unable to load market rates
+
{message}
-