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`.
This commit is contained in:
Víctor Falcón 2026-04-04 16:10:14 +01:00 committed by GitHub
parent 7e958284e3
commit 6ce5b123ce
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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,