From aed0782d5fc5a4be05a15e9a9a5b8cebbfb97149 Mon Sep 17 00:00:00 2001 From: Bernardo Anderson Date: Thu, 28 Aug 2025 13:09:43 -0500 Subject: [PATCH] CP-10759 - Remove unused withStamp prop and injection --- app/javascript/template_builder/builder.vue | 6 ------ app/javascript/template_builder/field_type.vue | 2 +- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/app/javascript/template_builder/builder.vue b/app/javascript/template_builder/builder.vue index 57bf2871..b05f1d67 100644 --- a/app/javascript/template_builder/builder.vue +++ b/app/javascript/template_builder/builder.vue @@ -389,7 +389,6 @@ export default { withPhone: this.withPhone, withVerification: this.withVerification, withPayment: this.withPayment, - withStamp: this.withStamp, isPaymentConnected: this.isPaymentConnected, withFormula: this.withFormula, withConditions: this.withConditions, @@ -589,11 +588,6 @@ export default { required: false, default: false }, - withStamp: { - type: Boolean, - required: false, - default: false - }, isPaymentConnected: { type: Boolean, required: false, diff --git a/app/javascript/template_builder/field_type.vue b/app/javascript/template_builder/field_type.vue index 40db0df0..fc1dc1b0 100644 --- a/app/javascript/template_builder/field_type.vue +++ b/app/javascript/template_builder/field_type.vue @@ -55,7 +55,7 @@ import { IconTextSize, IconWritingSign, IconCalendarEvent, IconPhoto, IconCheckb export default { name: 'FiledTypeDropdown', - inject: ['withPhone', 'withPayment', 'withVerification', 'withStamp', 't', 'fieldTypes'], + inject: ['withPhone', 'withPayment', 'withVerification', 't', 'fieldTypes'], props: { modelValue: { type: String,