From 91b1f1a993fa2c936af47013e4f5dc008f093a09 Mon Sep 17 00:00:00 2001 From: zvspany Date: Thu, 12 Mar 2026 19:40:44 +0100 Subject: [PATCH] feat(converter): change default currency: USD to BTC --- app/page.tsx | 2 +- components/converter/converter-card.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/page.tsx b/app/page.tsx index 583213e..04e20e4 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -7,7 +7,7 @@ import { Hero } from "@/components/sections/hero"; import { InsightsSection } from "@/components/sections/insights-section"; const DEFAULT_FROM = "USD"; -const DEFAULT_TO = "EUR"; +const DEFAULT_TO = "BTC"; export default function HomePage() { const [selectedFromCode, setSelectedFromCode] = useState(DEFAULT_FROM); diff --git a/components/converter/converter-card.tsx b/components/converter/converter-card.tsx index c7b4c4e..909ccbc 100644 --- a/components/converter/converter-card.tsx +++ b/components/converter/converter-card.tsx @@ -49,7 +49,7 @@ import { cn } from "@/lib/utils"; import { validateAmount } from "@/lib/validation"; const DEFAULT_FROM = "USD"; -const DEFAULT_TO = "EUR"; +const DEFAULT_TO = "BTC"; const QUICK_AMOUNTS = [10, 50, 100, 500, 1000] as const; const DEFAULT_MULTI_CONVERSION_CODES = ["USD", "EUR", "BTC", "ETH", "SOL"] as const; const MAX_MULTI_CONVERSIONS = 4;