mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -04:00
🌊 Fix managed llm connector check (#217197)
Check was checking the wrong way
This commit is contained in:
parent
f7482f0006
commit
9488bff6b8
1 changed files with 1 additions and 1 deletions
|
@ -279,7 +279,7 @@ function InnerGrokAiSuggestions({
|
|||
content = null;
|
||||
}
|
||||
|
||||
const isManagedAIConnector = !INTERNAL_INFERENCE_CONNECTORS.includes(currentConnector || '');
|
||||
const isManagedAIConnector = INTERNAL_INFERENCE_CONNECTORS.includes(currentConnector || '');
|
||||
const [isManagedAiConnectorCalloutDismissed, setManagedAiConnectorCalloutDismissed] =
|
||||
useLocalStorage('streams:managedAiConnectorCalloutDismissed', false);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue