From e7c9c2d496603696ed0d29bf983cac141592c03e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josip=20Boj=C4=8Di=C4=87?= Date: Thu, 5 Mar 2026 10:41:36 +0100 Subject: [PATCH] Ignore DuckDuckGo iOS hover CSS parser error in Sentry Fixes AGICASH-7B Co-Authored-By: Claude Opus 4.6 --- app/entry.client.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/entry.client.tsx b/app/entry.client.tsx index 08174a28..3fefc6fc 100644 --- a/app/entry.client.tsx +++ b/app/entry.client.tsx @@ -57,6 +57,9 @@ Sentry.init({ // The transition is simply skipped; navigation still works. This is a React Router // internal call we can't wrap. See https://make-prisms.sentry.io/issues/6786605134/?project=4509707316690944. /^View transition was skipped because document visibility state is hidden\.$/, + // DuckDuckGo on iOS (WebKit) throws when encountering @media (hover: hover) + // from Tailwind v4. No stack trace, not our code. See AGICASH-7B. + /^feature named `.*` was not found$/, ], enabled: process.env.NODE_ENV === 'production' &&