From 7c9330eb1510a69ca39ff60cda287c4f7f152540 Mon Sep 17 00:00:00 2001 From: Sewmina Date: Wed, 23 Apr 2025 13:40:27 +0000 Subject: [PATCH] price selection --- src/components/PriceSelection.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/PriceSelection.tsx b/src/components/PriceSelection.tsx index 336fc7c..853e385 100644 --- a/src/components/PriceSelection.tsx +++ b/src/components/PriceSelection.tsx @@ -6,7 +6,7 @@ interface PriceSelectionProps { } export function PriceSelection({ selectedPrice, onSelect }: PriceSelectionProps) { - const presets = [0.01, 0.05, 0.1, 0.2, 0.5, 1.0]; + const presets = [0.05, 0.1, 0.2, 0.5, 1.0]; const [inputValue, setInputValue] = useState(""); const MIN_AMOUNT = 0.01;