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 8117824 commit bf09870Copy full SHA for bf09870
src/components/codeKeywords/codeKeywords.tsx
@@ -27,7 +27,7 @@ export function makeKeywordsClickable(children: React.ReactNode) {
27
if (ORG_AUTH_TOKEN_REGEX.test(child)) {
28
makeOrgAuthTokenClickable(arr, child);
29
} else if (KEYWORDS_REGEX.test(child)) {
30
- const isDSNKeyword = child.startsWith('"___PUBLIC_DSN___"');
+ const isDSNKeyword = /___PUBLIC_DSN___/.test(child);
31
makeProjectKeywordsClickable(arr, child, isDSNKeyword);
32
} else {
33
arr.push(child);
0 commit comments