Sigrid Huemer
Sigrid Huemer
I am having the same issue. In exportPathMap, the query is defined as follows: ```javascript '/at/de/login': { page: '/[country]/[lang]/login', query: { lang: 'de', country: 'at' } }, ``` But when...
An option would be writing a blog post about Sentry usage in Shopify checkout UI extensions.
I created a Next.js test application [based on this PR](https://github.com/getsentry/sentry-javascript/pull/11304) where I excluded our HTTP integration. I tried different scenarios (`httpIntegration` added/excluded in SDK, Next.js version in test app, manually...
@koba04 Thank you for your reply! Yes, documenting that would be absolutely useful. And also supporting "multiple mutate" with `useSWRInfinite` would be nice. The reason I stumbled upon this bug...
Added frontend/backend PRs: backend: https://github.com/getsentry/sentry/pull/70720 frontend: https://github.com/getsentry/sentry/pull/70719
Maybe putting axios and the interceptors in a React context? Like it is done in [this article](https://blog.openreplay.com/integrating-axios-with-react-hooks/#extending-integration-with-react-context)? Here are also some suggestions: https://github.com/axios/axios/issues/2315
@jaredp Thanks for pointing this out! Looks like this should be possible if the script is running in the isolated world. We will investigate and test this with MV3 and...
This is possible with an eslint rule: https://github.com/sveltejs/eslint-plugin-svelte/issues/380 I have the following setup: ``` module.exports = { root: true, extends: [ 'eslint:recommended', 'plugin:@typescript-eslint/recommended', 'plugin:svelte/recommended', 'prettier' ], rules: { 'svelte/block-lang': [...
This seems to be fixed, so I am closing this 👍
As @mydea already indicated, mutating the options after initialization can easily lead to unexpected behavior and is not suggested. You can also use a dynamic sample rate by adding a...