Skip to content

Commit

Permalink
Merge pull request #190 from ln-dev7/release
Browse files Browse the repository at this point in the history
change max randomNumber value
  • Loading branch information
ln-dev7 authored Sep 13, 2023
2 parents 157172d + 371879a commit fb29e88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pages/form/view/[form]/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,8 @@ export default function FormViewPage() {
const [randomNumbers, setRandomNumbers] = useState(generateRandomNumbers())

function generateRandomNumbers() {
const number1 = Math.floor(Math.random() * 21) // Nombres aléatoires de 0 à 20
const number2 = Math.floor(Math.random() * 21)
const number1 = Math.floor(Math.random() * 51)
const number2 = Math.floor(Math.random() * 51)
return { number1, number2 }
}
//
Expand Down

1 comment on commit fb29e88

@vercel
Copy link

@vercel vercel bot commented on fb29e88 Sep 13, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

sharuco – ./

sharuco-git-master-ln-dev7.vercel.app
sharuco.lndev.me
sharuco-ln-dev7.vercel.app

Please sign in to comment.