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;