diff --git a/app/javascript/dashboard/components-next/captain/pageComponents/customTool/CustomToolCard.vue b/app/javascript/dashboard/components-next/captain/pageComponents/customTool/CustomToolCard.vue index f7f889cc9..d1d1dd011 100644 --- a/app/javascript/dashboard/components-next/captain/pageComponents/customTool/CustomToolCard.vue +++ b/app/javascript/dashboard/components-next/captain/pageComponents/customTool/CustomToolCard.vue @@ -26,10 +26,6 @@ const props = defineProps({ type: String, default: 'none', }, - paramSchema: { - type: Array, - default: () => [], - }, updatedAt: { type: Number, required: true, @@ -75,11 +71,6 @@ const authTypeLabel = computed(() => { `CAPTAIN.CUSTOM_TOOLS.FORM.AUTH_TYPES.${props.authType.toUpperCase()}` ); }); - -const parameterNames = computed(() => { - if (!props.paramSchema || props.paramSchema.length === 0) return ''; - return props.paramSchema.map(p => p.name).join(', '); -});