Skip to content

Commit

Permalink
fix(import) after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
CristianSpatari committed Dec 7, 2023
1 parent c9f4e74 commit aedd09f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion brizy.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down
3 changes: 1 addition & 2 deletions public/editor-client/src/index.ts
Original file line number Diff line number Diff line change
@@ -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";
Expand Down Expand Up @@ -32,7 +31,7 @@ if (!config) {
}

const api = {
...(config.api.openAIUrl ? {textAI: {handler: doAiRequest}} : {}),
...(config.api.openAIUrl ? { textAI: { handler: doAiRequest } } : {}),
media: {
addMedia,
addMediaGallery,
Expand Down

0 comments on commit aedd09f

Please sign in to comment.