aboutsummaryrefslogtreecommitdiffstats
path: root/language-web/src/main/js/editor/EditorArea.tsx
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2021-10-30 14:36:39 +0200
committerLibravatar Kristóf Marussy <kristof@marussy.com>2021-10-31 19:26:14 +0100
commitdef79f104999710953124c77241c95a7726791f0 (patch)
treef1096b07aa6c67d9c986df025400d8e555ca8a95 /language-web/src/main/js/editor/EditorArea.tsx
parentfeat(web): server-side content assist filtering (diff)
downloadrefinery-def79f104999710953124c77241c95a7726791f0.tar.gz
refinery-def79f104999710953124c77241c95a7726791f0.tar.zst
refinery-def79f104999710953124c77241c95a7726791f0.zip
chore(web): move logger to utils/
Diffstat (limited to 'language-web/src/main/js/editor/EditorArea.tsx')
-rw-r--r--language-web/src/main/js/editor/EditorArea.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/language-web/src/main/js/editor/EditorArea.tsx b/language-web/src/main/js/editor/EditorArea.tsx
index 7b6201ed..678a632d 100644
--- a/language-web/src/main/js/editor/EditorArea.tsx
+++ b/language-web/src/main/js/editor/EditorArea.tsx
@@ -10,10 +10,10 @@ import React, {
10} from 'react'; 10} from 'react';
11 11
12import { EditorParent } from './EditorParent'; 12import { EditorParent } from './EditorParent';
13import { getLogger } from '../logging';
14import { useRootStore } from '../RootStore'; 13import { useRootStore } from '../RootStore';
14import { getLogger } from '../utils/logger';
15 15
16const log = getLogger('EditorArea'); 16const log = getLogger('editor.EditorArea');
17 17
18function usePanel( 18function usePanel(
19 panelId: string, 19 panelId: string,