We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4482ddc commit 73f46a6Copy full SHA for 73f46a6
src/components/codeContext.tsx
@@ -52,6 +52,7 @@ const DEFAULTS: CodeKeywords = {
52
API_URL: "https://sentry.io/api",
53
PROJECT_ID: 0,
54
PROJECT_NAME: "example-project",
55
+ PROJECT_SLUG: "example-project",
56
ORG_ID: 0,
57
ORG_NAME: "example-org",
58
ORG_SLUG: "exmaple-org",
@@ -114,8 +115,8 @@ export function fetchCodeKeywords() {
114
115
SECRET_KEY: parsedDsn.secretKey,
116
API_URL: formatApiUrl(parsedDsn),
117
PROJECT_ID: project.id,
- PROJECT_SLUG: project.slug,
118
- PROJECT_NAME: project.slug,
+ PROJECT_NAME: project.projectSlug,
119
+ PROJECT_SLUG: project.projectSlug,
120
ORG_ID: project.organizationId,
121
ORG_NAME: project.organizationSlug,
122
ORG_SLUG: project.organizationSlug,
0 commit comments