diff --git a/src/state/feed-feedback.tsx b/src/state/feed-feedback.tsx index 67ac77ba37..623f87b126 100644 --- a/src/state/feed-feedback.tsx +++ b/src/state/feed-feedback.tsx @@ -11,7 +11,6 @@ import {type AppBskyFeedDefs} from '@atproto/api' import throttle from 'lodash.throttle' import {PROD_FEEDS, STAGING_FEEDS} from '#/lib/constants' -import {isNetworkError} from '#/lib/hooks/useCleanError' import {Logger} from '#/logger' import { type FeedSourceFeedInfo, @@ -129,11 +128,7 @@ export function useFeedFeedback( }, }, ) - .catch((e: any) => { - if (!isNetworkError(e)) { - logger.warn('Failed to send feed interactions', {error: e}) - } - }) + .catch(() => {}) // ignore upstream errors // Send to Statsig if (aggregatedStats.current === null) {