Remove points limit
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user