Skip to content

Commit

Permalink
Fix eslint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
dkotter committed Feb 11, 2025
1 parent de9db67 commit 8fa4dbf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/js/settings/components/provider-settings/ollama-base.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,16 @@ export const OllamaBaseSettings = ( {
const Description = () => (
<>
{ __(
'URL of the locally hosted Ollama instance. Defaults to http://localhost:11434/. ',
"URL of the locally hosted Ollama instance. Defaults to http://localhost:11434/. Don't have Ollama installed yet?",
'classifai'
) }
{ __( "Don't have Ollama installed yet? ", 'classifai' ) }
<a
title={ __( 'Install Ollama', 'classifai' ) }
href="https://ollama.com/"
target="_blank"
rel="noopener noreferrer"
>
{ ' ' }
{ __( 'Download Ollama', 'classifai' ) }
</a>
</>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,17 +41,17 @@ export const OllamaMultimodalSettings = ( { isConfigured = false } ) => {

const promptExamples = (
<>
{ __( 'Add a custom prompt, if desired. ', 'classifai' ) }
{ __( 'See our ', 'classifai' ) }
{ __( 'Add a custom prompt, if desired. See our', 'classifai' ) }
<a
href="https://10up.github.io/classifai/tutorial-prompt-examples.html"
target="_blank"
rel="noopener noreferrer"
>
{ ' ' }
{ __( 'documentation', 'classifai' ) }
</a>
</a>{ ' ' }
{ __(
' for some example prompts you can try that have been tested for specific use cases.',
'for some example prompts you can try that have been tested for specific use cases.',
'classifai'
) }
</>
Expand Down

0 comments on commit 8fa4dbf

Please sign in to comment.