Skip to content

Commit 905dccc

Browse files
authored
fix(getting-started): Deno docs minor fixes (#94739)
1. I noticed that the default option to import the SDK is from `deno.land` but there's a deprecation notice on the repo here: https://github.com/getsentry/sentry-deno. 2. Besides that, I noticed a rogue semicolon in the "Verify" section
1 parent 37a6465 commit 905dccc

File tree

1 file changed

+1
-7
lines changed
  • static/app/gettingStartedDocs/deno

1 file changed

+1
-7
lines changed

static/app/gettingStartedDocs/deno/deno.tsx

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,6 @@ type Params = DocsParams;
1515
const getInstallConfig = () => [
1616
{
1717
code: [
18-
{
19-
label: 'Deno registry',
20-
value: 'deno',
21-
language: 'javascript',
22-
code: `import * as Sentry from "https://deno.land/x/sentry/index.mjs";"`,
23-
},
2418
{
2519
label: 'npm registry',
2620
value: 'npm',
@@ -44,7 +38,7 @@ Sentry.init({
4438
});
4539
`;
4640

47-
const getVerifySnippet = () => `;
41+
const getVerifySnippet = () => `
4842
setTimeout(() => {
4943
throw new Error();
5044
});

0 commit comments

Comments
 (0)