Merge pull request #61 from presenton/feat/custom_url_support
feat/custom url support
This commit is contained in:
commit
2daea347aa
2 changed files with 2 additions and 2 deletions
|
|
@ -320,7 +320,7 @@ const SettingsPage = () => {
|
|||
: "text-gray-700"
|
||||
}`}
|
||||
>
|
||||
{provider.charAt(0).toUpperCase() + provider.slice(1)}
|
||||
{provider === 'openai' ? 'OpenAI' : provider.charAt(0).toUpperCase() + provider.slice(1)}
|
||||
</span>
|
||||
</div>
|
||||
</button>
|
||||
|
|
|
|||
|
|
@ -408,7 +408,7 @@ export default function Home() {
|
|||
: "text-gray-700"
|
||||
}`}
|
||||
>
|
||||
{provider.charAt(0).toUpperCase() + provider.slice(1)}
|
||||
{provider === 'openai' ? 'OpenAI' : provider.charAt(0).toUpperCase() + provider.slice(1)}
|
||||
</span>
|
||||
</div>
|
||||
</button>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue