sentry: add a prefix to the release name (only for development)

This commit is contained in:
Dawid Wysokiński 2021-11-10 08:22:33 +01:00
parent 1269524853
commit d8c9ed2061
Signed by: Kichiyaki
GPG Key ID: EF14026D247EB867
1 changed files with 3 additions and 1 deletions

View File

@ -18,7 +18,9 @@ const initSentry = () => {
}),
],
tracesSampleRate: 0.3,
release: __DEV__ ? 'development' : undefined,
release: __DEV__
? 'com.dawidwysokinski.zdamegzaminzawodowy@development'
: undefined,
});
};