🌊 Fix managed llm connector check (#217197)

Check was checking the wrong way
This commit is contained in:
Joe Reuter 2025-04-04 17:44:22 +02:00 committed by GitHub
parent f7482f0006
commit 9488bff6b8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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);