From 158e8f26931bffff9723459a97919a5826c23791 Mon Sep 17 00:00:00 2001 From: David Lechner Date: Wed, 6 Apr 2022 09:01:14 -0500 Subject: [PATCH] fix typo --- src/editor/actions.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/editor/actions.ts b/src/editor/actions.ts index 9a409c5f..dff40ca5 100644 --- a/src/editor/actions.ts +++ b/src/editor/actions.ts @@ -13,7 +13,7 @@ export const editorDidCreate = createAction(() => ({ * @param id A unique identifier for this request. */ export const editorGetValueRequest = createAction((id: number) => ({ - type: 'editor,action.getCurrentScriptRequest', + type: 'editor.action.getCurrentScriptRequest', id, })); @@ -23,7 +23,7 @@ export const editorGetValueRequest = createAction((id: number) => ({ * @param value The current editor contents. */ export const editorGetValueResponse = createAction((id: number, value: string) => ({ - type: 'editor,action.getCurrentScriptResponse', + type: 'editor.action.getCurrentScriptResponse', id, value, }));