feat: add voice selectors in elevenlabs (#88)

This commit is contained in:
Abhishek 2025-12-25 15:05:53 +05:30 committed by GitHub
parent 480e8a5f60
commit 45c5b7c304
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
22 changed files with 978 additions and 166 deletions

View file

@ -460,7 +460,7 @@ export default function APIKeysPage() {
{showServiceArchived ? 'Hide' : 'Show'} Archived
</Button>
)}
{canCreateServiceKey && (
{canCreateServiceKey ? (
<Button
onClick={() => setIsCreateServiceDialogOpen(true)}
size="sm"
@ -468,6 +468,10 @@ export default function APIKeysPage() {
<Plus className="w-4 h-4 mr-2" />
Create Service Key
</Button>
) : (
<span className="text">
To generate additional service keys, <a href="https://app.dograh.com" target="_blank" rel="noopener noreferrer" className="text-primary hover:underline">Sign up on app.dograh.com</a>
</span>
)}
</div>
</div>