Skip to content

Commit

Permalink
chore(front): sets sentry config with float; adds missing color to Co…
Browse files Browse the repository at this point in the history
…de light theme
  • Loading branch information
dgrebb committed Sep 20, 2023
1 parent 788ee44 commit c60e2ad
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions front/src/hooks.client.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ Sentry.init({
integrations: [new Sentry.BrowserTracing(), new Sentry.Replay()],
tracePropagationTargets: ['localhost', /^https:\/\/\*\.dgrebb\.com\/api/],
tracesSampleRate:
PUBLIC_ENV === 'production' ? 0.5 : PUBLIC_ENV === 'staging' ? 0.25 : 0,
PUBLIC_ENV === 'production' ? 0.5 : PUBLIC_ENV === 'staging' ? 0.25 : 0.0,
replaysSessionSampleRate:
PUBLIC_ENV === 'production' ? 0.5 : PUBLIC_ENV === 'staging' ? 0.25 : 0,
PUBLIC_ENV === 'production' ? 0.5 : PUBLIC_ENV === 'staging' ? 0.25 : 0.0,
replaysOnErrorSampleRate:
PUBLIC_ENV === 'production' ? 1 : PUBLIC_ENV === 'staging' ? 0.25 : 0,
PUBLIC_ENV === 'production' ? 1.0 : PUBLIC_ENV === 'staging' ? 0.25 : 0.0,
normalizeDepth: 0,
beforeSend(event) {
if (event.user) {
Expand Down
6 changes: 3 additions & 3 deletions front/src/lib/styles/base/theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -310,11 +310,11 @@
}
}
td:first-child {
background: var(--lemon);
background: var(--lemon-25);
background: linear-gradient(
90deg,
var(--lemon) 65%,
var(--lemon) 81%,
var(--lemon-25) 65%,
var(--lemon-25) 81%,
transparent 100%
);
color: var(--violet-a30);
Expand Down

0 comments on commit c60e2ad

Please sign in to comment.