From c2b801f5d844ddfacb7f1549f9f1ed5f36f3e830 Mon Sep 17 00:00:00 2001 From: Shivam Mishra Date: Fri, 3 Oct 2025 20:00:29 +0530 Subject: [PATCH] feat: remove params from card --- .../customTool/CustomToolCard.vue | 17 ----------------- 1 file changed, 17 deletions(-) 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(', '); -});