Skip to content

Commit

Permalink
Noting that API key will still work if set in .env file
Browse files Browse the repository at this point in the history
  • Loading branch information
coleam00 committed Nov 9, 2024
1 parent b3fe207 commit 13b1321
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/chat/APIKeyManager.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const APIKeyManager: React.FC<APIKeyManagerProps> = ({ provider, apiKey,
) : (
<>
<span className="flex-1 text-sm text-bolt-elements-textPrimary">
{apiKey ? '••••••••' : 'Not set'}
{apiKey ? '••••••••' : 'Not set (will still work if set in .env file)'}
</span>
<IconButton onClick={() => setIsEditing(true)} title="Edit API Key">
<div className="i-ph:pencil-simple" />
Expand Down

0 comments on commit 13b1321

Please sign in to comment.