From 5cda1ba523a1565a69a4644b8a481bc377cc0e4d Mon Sep 17 00:00:00 2001
From: chris <kokosias@yahoo.gr>
Date: Mon, 13 Jul 2020 00:40:02 +0300
Subject: [PATCH] change order

---
 editors/editoria/src/config/config.js                       | 2 +-
 wax-prosemirror-schema/src/marks/trackChangesMarks/index.js | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/editors/editoria/src/config/config.js b/editors/editoria/src/config/config.js
index 6a29c0f79..294e15fb5 100644
--- a/editors/editoria/src/config/config.js
+++ b/editors/editoria/src/config/config.js
@@ -72,11 +72,11 @@ export default {
     new TextToolGroupService(),
     new ListsService(),
     new LinkService(),
+    new InlineAnnotationsService(),
     new TrackChangeService(),
     new CommentsService(),
     new PlaceholderService(),
     new ImageService(),
-    new InlineAnnotationsService(),
     new TablesService(),
     new BaseService(),
     new BaseToolGroupService(),
diff --git a/wax-prosemirror-schema/src/marks/trackChangesMarks/index.js b/wax-prosemirror-schema/src/marks/trackChangesMarks/index.js
index 1be38fc68..65843faf6 100644
--- a/wax-prosemirror-schema/src/marks/trackChangesMarks/index.js
+++ b/wax-prosemirror-schema/src/marks/trackChangesMarks/index.js
@@ -3,7 +3,7 @@ import deletionMark from "./deletionMark";
 import formatChangeMark from "./formatChangeMark";
 
 export default {
+  format_change: formatChangeMark,
   insertion: insertionMark,
-  deletion: deletionMark,
-  format_change: formatChangeMark
+  deletion: deletionMark
 };
-- 
GitLab