Skip to content

Commit 4de45f9

Browse files
committed
ref(feedback): Remove duplicate sendFeedback rejection message
1 parent 1d59d8a commit 4de45f9

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

packages/feedback/src/core/sendFeedback.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,6 @@ export const sendFeedback: SendFeedback = (
5555
return resolve(eventId);
5656
}
5757

58-
if (response && typeof response.statusCode === 'number' && response.statusCode === 0) {
59-
return reject(
60-
'Unable to send Feedback. This is because of network issues, or because you are using an ad-blocker.',
61-
);
62-
}
63-
6458
if (response && typeof response.statusCode === 'number' && response.statusCode === 403) {
6559
return reject(
6660
'Unable to send Feedback. This could be because this domain is not in your list of allowed domains.',

0 commit comments

Comments
 (0)