commit pour merge le fix de thomas 🔧

pull/114/head
Pierre Ferreira 1 year ago
parent fe2836b636
commit 294cd87672

@ -332,7 +332,7 @@ const InGame = ({locale, changeLocale}) => {
//@ts-ignore
const handleNumberChange = (event) => {
setEnteredNumber(event.target.value);
setEnteredNumber(parseInt(event.target.value));
};
//@ts-ignore
@ -358,7 +358,7 @@ const InGame = ({locale, changeLocale}) => {
//@ts-ignore
const handleNumberIndicesChange = (event) => {
setEnteredNumberIndices(event.target.value);
setEnteredNumberIndices(parseInt(event.target.value));
};
useEffect(() => {

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save