Skip to content

Commit

Permalink
Remove Civ Picked minimum
Browse files Browse the repository at this point in the history
  • Loading branch information
Coow committed Dec 30, 2023
1 parent 103218d commit 51b57da
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/dashboard/components/Aoe4CivDraft.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,8 @@ export function Aoe4CivDraft() {
set_leftPicksCount(1)
set_rightPicksCount(1)

nodecg.sendMessage('resetDraft')

f_updateDraft(null)
}

Expand Down Expand Up @@ -258,7 +260,7 @@ export function Aoe4CivDraft() {
<input
className=' m-auto text-center'
type="number"
min={1}
min={0}
max={9}
value={leftPicksCount ?? 0}
onChange={(event) => {
Expand Down Expand Up @@ -316,7 +318,7 @@ export function Aoe4CivDraft() {
<input
className='m-auto text-center'
type="number"
min={1}
min={0}
max={9}
value={rightPicksCount ?? 0}
onChange={(event) => {
Expand Down

0 comments on commit 51b57da

Please sign in to comment.