X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/eb909803c6fe3c99894ac402a88ea7cbc114f66b..f0a64666816383d2641d5fa7ea22019441ac4464:/src/store/rich-text-editor-dialog/rich-text-editor-dialog-actions.tsx?ds=sidebyside diff --git a/src/store/rich-text-editor-dialog/rich-text-editor-dialog-actions.tsx b/src/store/rich-text-editor-dialog/rich-text-editor-dialog-actions.tsx index 39f3d840a9..6213c60a91 100644 --- a/src/store/rich-text-editor-dialog/rich-text-editor-dialog-actions.tsx +++ b/src/store/rich-text-editor-dialog/rich-text-editor-dialog-actions.tsx @@ -2,11 +2,8 @@ // // SPDX-License-Identifier: AGPL-3.0 -import { Dispatch } from "redux"; import { dialogActions } from "~/store/dialog/dialog-actions"; export const RICH_TEXT_EDITOR_DIALOG_NAME = 'richTextEditorDialogName'; -export const openRichTextEditorDialog = (title: string, text: string) => - (dispatch: Dispatch) => { - dispatch(dialogActions.OPEN_DIALOG({ id: RICH_TEXT_EDITOR_DIALOG_NAME, data: { title, text } })); - }; \ No newline at end of file +export const openRichTextEditorDialog = (title: string, text: string) => + dialogActions.OPEN_DIALOG({ id: RICH_TEXT_EDITOR_DIALOG_NAME, data: { title, text } }); \ No newline at end of file