Skip to content

Commit 8e9ef54

Browse files
committed
fix build error
1 parent 121f66c commit 8e9ef54

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/e2e-tests/test-applications/sveltekit-2/src/hooks.server.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import { env } from '$env/dynamic/private';
1+
import { E2E_TEST_DSN } from '$env/static/private';
22
import * as Sentry from '@sentry/sveltekit';
33

44
Sentry.init({
55
environment: 'qa', // dynamic sampling bias to keep transactions
6-
dsn: env.E2E_TEST_DSN,
6+
dsn: E2E_TEST_DSN,
77
debug: true,
88
tunnel: `http://localhost:3031/`, // proxy server
99
tracesSampleRate: 1.0,

0 commit comments

Comments
 (0)