From 1e5884862912fbad6f0e559f6e48687f38676334 Mon Sep 17 00:00:00 2001 From: b3ni15 Date: Sun, 21 Dec 2025 00:21:07 +0100 Subject: [PATCH] feat: update deposit limits and custom input placeholder in LobbyScreen --- src/screens/LobbyScreen.js | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/screens/LobbyScreen.js b/src/screens/LobbyScreen.js index 8f01ac4..0371f75 100644 --- a/src/screens/LobbyScreen.js +++ b/src/screens/LobbyScreen.js @@ -79,7 +79,7 @@ export default function LobbyScreen({ user, token, onLogout, onSelectTable, onRe }; const customValue = Number(customAmount); - const customValid = Number.isFinite(customValue) && customValue >= 50 && customValue <= 100; + const customValid = Number.isFinite(customValue) && customValue >= 175 && customValue <= 1000; return ( Feltöltés - handleDeposit(50)} variant="gold" disabled={depositLoading} /> - handleDeposit(100)} variant="gold" disabled={depositLoading} /> + handleDeposit(200)} variant="gold" disabled={depositLoading} /> + handleDeposit(500)} variant="gold" disabled={depositLoading} /> + handleDeposit(1000)} variant="gold" disabled={depositLoading} /> @@ -113,14 +114,14 @@ export default function LobbyScreen({ user, token, onLogout, onSelectTable, onRe setCustomAmount(value.replace(/[^0-9]/g, ''))} - placeholder="pl. 75" + placeholder="pl. 250" placeholderTextColor="rgba(255,255,255,0.35)" keyboardType="number-pad" style={styles.customInput} /> Ft - Minimum 50 Ft, maximum 100 Ft. + Minimum 175 Ft, maximum 1000 Ft.