diff --git a/assets/js/src/form_editor/store/actions.jsx b/assets/js/src/form_editor/store/actions.jsx index f2ec5cbcc0..489f325c47 100644 --- a/assets/js/src/form_editor/store/actions.jsx +++ b/assets/js/src/form_editor/store/actions.jsx @@ -28,7 +28,7 @@ const createAddNoticeAction = (content, status, isDismissible, id) => ({ id, }); -export function addNotice(content, status, id) { +export function addNonDismissibleNotice(content, status, id) { return createAddNoticeAction(content, status, false, id); }