Skip to content

Commit

Permalink
fix: Feedback popup switched email and name in the form bindings (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
pajotg authored Jun 4, 2024
1 parent 2f0d0e7 commit 99e736c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/components/core/popups/popups/Feedback.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ function onsubmit(event: SubmitEvent) {
<div class="input">
<TextInput
placeholder={$_("NAME")}
bind:value={senderEmail}
bind:value={senderName}
mode="secondary"
focus={true}
required
Expand All @@ -63,7 +63,7 @@ function onsubmit(event: SubmitEvent) {
<div class="input">
<TextInput
placeholder={$_("EMAIL")}
bind:value={senderName}
bind:value={senderEmail}
mode="secondary"
type="email"
required
Expand Down

0 comments on commit 99e736c

Please sign in to comment.