Skip to content
Snippets Groups Projects
Commit 323da6a2 authored by victor mutai's avatar victor mutai
Browse files

chore: aiOn from config

parent a848bd95
No related branches found
No related tags found
1 merge request!540Allow book owner to set AI use
This commit is part of merge request !540. Comments created here will be created in the context of that merge request.
......@@ -18,7 +18,7 @@ export default props => {
pmViews: props.view || {},
activeView: props.activeView || {},
activeViewId: props.activeViewId || {},
options: { fullScreen: false },
options: { fullScreen: false, AiOn: false },
transaction: {},
setTransaction: tr => {
Object.assign(context.transaction, tr);
......
......@@ -105,6 +105,7 @@ const AskAIOverlay = ({ setPosition, position, config }) => {
const { t, i18n } = useTranslation();
const {
pmViews: { main },
options,
} = useContext(WaxContext);
const [result, setResult] = useState('');
const [isSubmitted, setIsSubmitted] = useState(false);
......@@ -134,7 +135,7 @@ const AskAIOverlay = ({ setPosition, position, config }) => {
}
setPosition({ ...position, left, top });
}, [position.left, AiOn]);
}, [position.left, options.AiOn, AiOn]);
const tryAgain = () => {
// Reset the state to initial values
......@@ -197,7 +198,7 @@ const AskAIOverlay = ({ setPosition, position, config }) => {
}
};
return AiOn ? (
return options?.AiOn && AiOn ? (
<Wrapper id="ai-overlay">
<AskAIForm>
<AskAIFormInput
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment