From 072a3ea142fdc7f3721c9179c8ee57ea1e6b9b7b Mon Sep 17 00:00:00 2001 From: Angus McLeod Date: Fri, 23 Sep 2022 18:09:49 +0200 Subject: [PATCH] FIX: remove incorrectly merged code --- .../discourse/components/wizard-custom-action.js.es6 | 6 ------ 1 file changed, 6 deletions(-) diff --git a/assets/javascripts/discourse/components/wizard-custom-action.js.es6 b/assets/javascripts/discourse/components/wizard-custom-action.js.es6 index 48dfef48..2b6b35b4 100644 --- a/assets/javascripts/discourse/components/wizard-custom-action.js.es6 +++ b/assets/javascripts/discourse/components/wizard-custom-action.js.es6 @@ -1,5 +1,4 @@ import { default as discourseComputed } from "discourse-common/utils/decorators"; -import { subscriptionSelectKitContent } from "discourse/plugins/discourse-custom-wizard/discourse/lib/wizard-subscription"; import { empty, equal, or } from "@ember/object/computed"; import { notificationLevels, selectKitContent } from "../lib/wizard"; import { computed } from "@ember/object"; @@ -94,11 +93,6 @@ export default Component.extend(UndoChanges, { return apis.find((a) => a.name === api).endpoints; }, - @discourseComputed - actionTypes() { - return subscriptionSelectKitContent("action", "types"); - }, - @discourseComputed("fieldTypes") hasEventsField(fieldTypes) { return fieldTypes.map((ft) => ft.id).includes("event");