Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
Miningmark committed Dec 23, 2024
1 parent 26ed61a commit 5cb12c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/registration/registrationAsArtist.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export default function RegistrationAsArtist() {

const [typeOfArt, setTypeOfArt] = useState("");
const [standSize, setStandSize] = useState("");
const [additionalExhibitorTicket, setAdditionalExhibitorTicket] = useState("");
const [additionalExhibitorTicket, setAdditionalExhibitorTicket] = useState(false);
const [wlan, setWlan] = useState(false);
const [programmBooklet, setProgrammBooklet] = useState("Nein");
const [descriptionOfStand, setDescriptionOfStand] = useState("");
Expand Down Expand Up @@ -279,7 +279,7 @@ export default function RegistrationAsArtist() {
setCountry("");
setTypeOfArt("");
setStandSize("");
setAdditionalExhibitorTicket("");
setAdditionalExhibitorTicket(false);
setWlan(false);
setProgrammBooklet("Nein");
setDescriptionOfStand("");
Expand Down

0 comments on commit 5cb12c2

Please sign in to comment.