summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/sentry/wrapper.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/sentry/wrapper.js')
-rw-r--r--app/assets/javascripts/sentry/wrapper.js26
1 files changed, 0 insertions, 26 deletions
diff --git a/app/assets/javascripts/sentry/wrapper.js b/app/assets/javascripts/sentry/wrapper.js
deleted file mode 100644
index 24039e6141c..00000000000
--- a/app/assets/javascripts/sentry/wrapper.js
+++ /dev/null
@@ -1,26 +0,0 @@
-// Temporarily commented out to investigate performance: https://gitlab.com/gitlab-org/gitlab/-/issues/251179
-// export * from '@sentry/browser';
-
-export function init(...args) {
- return args;
-}
-
-export function setUser(...args) {
- return args;
-}
-
-export function captureException(...args) {
- return args;
-}
-
-export function captureMessage(...args) {
- return args;
-}
-
-export function withScope(fn) {
- fn({
- setTag(...args) {
- return args;
- },
- });
-}