price selection

This commit is contained in:
Sewmina 2025-04-23 13:40:27 +00:00
parent ea0d5c977a
commit 7c9330eb15

View File

@ -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<string>("");
const MIN_AMOUNT = 0.01;