(key: string | undefined)
| 44 | }; |
| 45 | |
| 46 | const providerLabel = (key: string | undefined): string => { |
| 47 | if (!key) return "Default"; |
| 48 | return PROVIDER_LABELS[key] ?? key; |
| 49 | }; |
| 50 | |
| 51 | export function SecretPicker(props: { |
| 52 | readonly value: string | null; |