Skip to content

Commit

Permalink
Resolved merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
AdityaP700 committed Oct 7, 2024
2 parents fbc7b32 + 9166f7c commit dc75fee
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions src/components/Confirm.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ function ConfirmationCheckbox() {

function handleInputChange(event) {
setInputValue(event.target.value);
storeInput(event.target.value);
}

const playGame = () => {
Expand All @@ -109,14 +110,14 @@ function ConfirmationCheckbox() {


const regenerateResponse = () => {
setPerson(null);
setInputValue("");
setClick(false);
setIsChecked(false);
setIsActive(false);
setButtonPlayed(false);
localStorage.removeItem("userName");
};
setPerson(null);
setInputValue("");
setClick(false);
setIsChecked(false);
setIsActive(false);
setButtonPlayed(false);
localStorage.removeItem("userName");
};

const wifestyle2 = {
margin: "0",
Expand Down

0 comments on commit dc75fee

Please sign in to comment.