chore: small ui improvement (#3414)

* chore/small-ui-nits

* chore: fix typo
This commit is contained in:
Faisal Amir 2024-08-20 18:59:35 +07:00 committed by GitHub
parent 4054713297
commit d14ce6fb86
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 9 deletions

View File

@ -581,7 +581,7 @@ const ModelDropdown = ({
'cursor-pointer px-3 py-2 hover:bg-[hsla(var(--dropdown-menu-hover-bg))]',
!apiKey
? 'cursor-not-allowed text-[hsla(var(--text-tertiary))]'
: 'text-[hsla(var(--text-secondary))]'
: 'text-[hsla(var(--text-primary))]'
)}
onClick={() => {
if (

View File

@ -211,14 +211,6 @@ const ThreadCenterPanel = () => {
</Fragment>
)}
{queuedMessage && !reloadModel && (
<div className="mb-2 text-center">
<span className="text-[hsla(var(--text-secondary)]">
Message will be sent once the model has started
</span>
</div>
)}
{activeModel && isGeneratingResponse && <GenerateResponse />}
<ChatInput />
</div>