From aedd09fda4d02a3c38d51c786f8b16673dcd36a0 Mon Sep 17 00:00:00 2001 From: CristianSpatari Date: Thu, 7 Dec 2023 14:46:26 +0200 Subject: [PATCH] fix(import) after rebase --- brizy.php | 2 +- public/editor-client/src/index.ts | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/brizy.php b/brizy.php index b2667fd1e4..cfaec8119c 100755 --- a/brizy.php +++ b/brizy.php @@ -17,7 +17,7 @@ $_SERVER['HTTPS'] = 'on'; } -define('BRIZY_DEVELOPMENT', false ); +define('BRIZY_DEVELOPMENT', true ); define('BRIZY_LOG', false ); define('BRIZY_VERSION', '2.4.34'); define('BRIZY_MINIMUM_PRO_VERSION', '2.4.15'); diff --git a/public/editor-client/src/index.ts b/public/editor-client/src/index.ts index e312c90546..c3a64b457b 100644 --- a/public/editor-client/src/index.ts +++ b/public/editor-client/src/index.ts @@ -1,5 +1,4 @@ import set from "lodash/set"; -import { handler as posts } from "./Elements/Posts"; import { doAiRequest } from "./aiText"; import { autoSave } from "./autoSave"; import { getCollectionItemsIds } from "./collectionItems/getCollectionItemsIds"; @@ -32,7 +31,7 @@ if (!config) { } const api = { - ...(config.api.openAIUrl ? {textAI: {handler: doAiRequest}} : {}), + ...(config.api.openAIUrl ? { textAI: { handler: doAiRequest } } : {}), media: { addMedia, addMediaGallery,