diff --git a/src/containers/Editor/components/TextEditor.tsx b/src/containers/Editor/components/TextEditor.tsx index 464df7bb610..8275f39523a 100644 --- a/src/containers/Editor/components/TextEditor.tsx +++ b/src/containers/Editor/components/TextEditor.tsx @@ -16,6 +16,7 @@ const editorOptions: EditorProps["options"] = { tabSize: 2, formatOnType: true, minimap: { enabled: false }, + stickyScroll: { enabled: false }, scrollBeyondLastLine: false, }; diff --git a/src/containers/Modals/SchemaModal/index.tsx b/src/containers/Modals/SchemaModal/index.tsx index 60a8566cc2f..a1b08e4c8ec 100644 --- a/src/containers/Modals/SchemaModal/index.tsx +++ b/src/containers/Modals/SchemaModal/index.tsx @@ -92,9 +92,8 @@ export const SchemaModal = ({ opened, onClose }: ModalProps) => { tabSize: 2, formatOnType: true, scrollBeyondLastLine: false, - minimap: { - enabled: false, - }, + stickyScroll: { enabled: false }, + minimap: { enabled: false }, }} />