We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a99c59d commit 52c5100Copy full SHA for 52c5100
1 file changed
src/pages/feedbackForm.js
@@ -36,7 +36,7 @@ export default function feedbackForm() {
36
);
37
38
Object.entries(filteredFormData).forEach(([key, value]) => {
39
- baseurl += `?entry.${encodeURIComponent(key)}=${encodeURIComponent(value)}`;
+ baseurl += `&entry.${encodeURIComponent(key)}=${encodeURIComponent(value)}`;
40
});
41
42
console.log(baseurl);
0 commit comments