From 6ce5b123ce9b58ae7ec660d8cbcd005fb1748e35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Falc=C3=B3n?= Date: Sat, 4 Apr 2026 16:10:14 +0100 Subject: [PATCH] fix: add missing port to frontend Bugsink DSN (#260) ## Summary - Adds the missing `:8000` port to the frontend Sentry/Bugsink DSN in `app.tsx`, so errors are sent to the correct endpoint at `bugsink.whisper.money:8000`. --- resources/js/app.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/js/app.tsx b/resources/js/app.tsx index a431496c..d1038f4b 100644 --- a/resources/js/app.tsx +++ b/resources/js/app.tsx @@ -23,7 +23,7 @@ import type { SharedData } from './types'; import { setTranslations } from './utils/i18n'; Sentry.init({ - dsn: 'https://47f7a823afae4c2f93ab3159ca7c0a3a@bugsink.whisper.money/2', + dsn: 'https://47f7a823afae4c2f93ab3159ca7c0a3a@bugsink.whisper.money:8000/2', environment: import.meta.env.MODE, integrations: [], tracesSampleRate: 0,