import React from 'react'; import { ASSISTANT_BRAND_NAME } from '../constants'; import { BrandMark, Button } from './ui'; type AssistantDisabledGateProps = { onOpenSettings: () => void; }; const AssistantDisabledGate: React.FC = ({ onOpenSettings }) => { return (

ActionPanel AI requests are off

{`Turn on "Allow WordPress to send requests to ActionPanel AI" to start chatting and sharing the site context ${ASSISTANT_BRAND_NAME} needs. You control log reads, write approvals, and other permissions anytime in Settings.`}

); }; export default AssistantDisabledGate;