Resolve lab hrs missing non body hrs. IO-714

This commit is contained in:
Patrick Fic
2021-02-25 09:53:53 -08:00
parent 8e9cb9d464
commit a4efedf3b5
5 changed files with 24 additions and 20 deletions

View File

@@ -23,16 +23,20 @@ Dinero.defaultCurrency = "CAD";
Dinero.globalLocale = "en-CA";
Dinero.globalRoundingMode = "HALF_UP";
Sentry.init({
dsn:
"https://fd7e89369b6b4bdc9c6c4c9f22fa4ee4@o492140.ingest.sentry.io/5651027",
integrations: [new Integrations.BrowserTracing()],
environment: process.env || "development",
enabled: process.env !== "development",
// We recommend adjusting this value in production, or using tracesSampler
// for finer control
tracesSampleRate: 0.5,
});
if (process.env.NODE_ENV !== "development") {
Sentry.init({
dsn:
"https://fd7e89369b6b4bdc9c6c4c9f22fa4ee4@o492140.ingest.sentry.io/5651027",
integrations: [
new Integrations.BrowserTracing(),
// new Sentry.Integrations.Breadcrumbs({ console: true }),
],
environment: process.env.NODE_ENV,
// We recommend adjusting this value in production, or using tracesSampler
// for finer control
tracesSampleRate: 0.5,
});
}
ReactDOM.render(
<Provider store={store}>