Cole Medin commited on
Commit
13b1321
·
1 Parent(s): b3fe207

Noting that API key will still work if set in .env file

Browse files
app/components/chat/APIKeyManager.tsx CHANGED
@@ -37,7 +37,7 @@ export const APIKeyManager: React.FC<APIKeyManagerProps> = ({ provider, apiKey,
37
  ) : (
38
  <>
39
  <span className="flex-1 text-sm text-bolt-elements-textPrimary">
40
- {apiKey ? '••••••••' : 'Not set'}
41
  </span>
42
  <IconButton onClick={() => setIsEditing(true)} title="Edit API Key">
43
  <div className="i-ph:pencil-simple" />
 
37
  ) : (
38
  <>
39
  <span className="flex-1 text-sm text-bolt-elements-textPrimary">
40
+ {apiKey ? '••••••••' : 'Not set (will still work if set in .env file)'}
41
  </span>
42
  <IconButton onClick={() => setIsEditing(true)} title="Edit API Key">
43
  <div className="i-ph:pencil-simple" />