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 323fa03 commit 7cd0dcfCopy full SHA for 7cd0dcf
packages/feedback/src/core/sendFeedback.ts
@@ -74,7 +74,7 @@ export async function sendFeedback(
74
}
75
76
// Require valid status codes, otherwise can assume feedback was not sent successfully
77
- if (typeof response.statusCode === 'number' && (response.statusCode < 200 || response.statusCode >= 300)) {
+ if (typeof response.statusCode === 'number' && (response.statusCode < 200 || response.statusCode >= 300)) {
78
if (response.statusCode === 0) {
79
throw new Error(
80
'Unable to send Feedback. This is because of network issues, or because you are using an ad-blocker.',
0 commit comments