We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb7ff45 commit 0993f0eCopy full SHA for 0993f0e
1 file changed
website/src/components/FeedbackWidget/index.tsx
@@ -28,10 +28,6 @@ export default function FeedbackWidget() {
28
userAgent: navigator.userAgent,
29
};
30
31
- // DEBUG: Log data being sent
32
- console.log('Sending feedback data:', data);
33
-
34
- // Use no-cors mode for Google Apps Script Web App
35
await fetch(GOOGLE_SCRIPT_URL, {
36
method: 'POST',
37
mode: 'no-cors',
@@ -43,8 +39,6 @@ export default function FeedbackWidget() {
43
39
44
40
setSubmitted(true);
45
41
} catch (error) {
46
- console.error('Feedback submission failed:', error);
47
- // Still show success to user
48
42
49
} finally {
50
setSubmitting(false);
0 commit comments