Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ You can set all values as environment variables, for example, in a `.env` file:
<OrgAuthTokenNote />

```bash {filename: .env}
# DO NOT commit this file to your repo. The auth token is a secret.
# Keep this secret - do not commit this file to your repo. The auth token is a secret.
SENTRY_AUTH_TOKEN=___ORG_AUTH_TOKEN___
SENTRY_ORG=___ORG_SLUG___
SENTRY_PROJECT=___PROJECT_SLUG___
Expand Down
4 changes: 2 additions & 2 deletions src/components/codeKeywords/orgAuthTokenCreator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ export function OrgAuthTokenCreator() {
<KeywordDropdown
ref={setReferenceEl}
role="button"
title="Click to generate token (DO NOT commit)"
title="Click to generate token (keep this secret)"
tabIndex={0}
onClick={() => {
handlePress();
Expand All @@ -192,7 +192,7 @@ export function OrgAuthTokenCreator() {
onAnimationStart={() => setIsAnimating(true)}
onAnimationComplete={() => setIsAnimating(false)}
>
Click to generate token (DO NOT commit)
Click to generate token (keep this secret)
</Keyword>
</AnimatePresence>
</span>
Expand Down
Loading