Skip to content

Commit 3564fb5

Browse files
aditya520claude
andcommitted
fix(dev-hub): address review feedback on API key copy
Restores the original placeholder wording since a Free-tier API token can also be rate-limited, and drops the em-dash / "no rate limits" overclaim from both hint branches. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 84335e0 commit 3564fb5

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • apps/developer-hub/src/components/Playground/AccessTokenInput

apps/developer-hub/src/components/Playground/AccessTokenInput/index.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,16 +48,16 @@ export function AccessTokenInput({ className }: AccessTokenInputProps) {
4848
onChange={(event) => {
4949
updateConfig({ accessToken: event.target.value });
5050
}}
51-
placeholder="Paste your API key for unlimited streams (optional)"
51+
placeholder="Leave empty to use demo token (rate limited)"
5252
type="password"
5353
value={config.accessToken}
5454
/>
5555
</div>
5656

5757
<span className={styles.hint}>
5858
{isUsingDemoToken
59-
? "Using a shared demo token rate-limited for fair use. Paste your own API key for unlimited streams."
60-
: "Using your API key — no rate limits. Sent only to authorize your stream; never stored."}
59+
? "Using a shared demo token is rate-limited for fair use. Paste your own API key for unlimited streams."
60+
: "Using your API key. Sent only to authorize your stream and never stored."}
6161
</span>
6262
</div>
6363
</div>

0 commit comments

Comments
 (0)