Remove points limit

This commit is contained in:
2026-01-09 19:02:08 +07:00
parent 76de7ccbdb
commit cd78a99ce7
5 changed files with 5 additions and 16 deletions

View File

@@ -949,7 +949,6 @@ export function LobbyPage() {
value={editChallenge.points}
onChange={(e) => setEditChallenge(prev => ({ ...prev, points: parseInt(e.target.value) || 0 }))}
min={1}
max={1000}
/>
</div>
<div>
@@ -1109,7 +1108,6 @@ export function LobbyPage() {
value={newChallenge.points}
onChange={(e) => setNewChallenge(prev => ({ ...prev, points: parseInt(e.target.value) || 0 }))}
min={1}
max={1000}
/>
</div>
<div>
@@ -1351,7 +1349,6 @@ export function LobbyPage() {
value={editChallenge.points}
onChange={(e) => setEditChallenge(prev => ({ ...prev, points: parseInt(e.target.value) || 0 }))}
min={1}
max={1000}
/>
</div>
<div>
@@ -1974,7 +1971,6 @@ export function LobbyPage() {
value={playthroughPoints}
onChange={(e) => setPlaythroughPoints(parseInt(e.target.value) || 50)}
min={1}
max={1000}
/>
</div>
<div>
@@ -2151,7 +2147,6 @@ export function LobbyPage() {
value={editPlaythroughPoints}
onChange={(e) => setEditPlaythroughPoints(parseInt(e.target.value) || 50)}
min={1}
max={1000}
/>
</div>
<div>