CSR-254: remove unneeded code

This commit is contained in:
Adam Caouette 2022-02-11 15:08:48 -05:00
parent 764a2a50e3
commit 78a7f5b190

View file

@ -31,7 +31,7 @@
class="small order-3"
:class="isMultiSelect ? 'm-0' : 'mt-2 mb-0'"
>
{{buttonLabel}} - {{errors.length}}
{{buttonLabel}}
</p>
<p v-if="buttonLabelSubCopy && !isWide" class="fs-7 m-0 order-4 sub-copy">
{{buttonLabelSubCopy}}
@ -124,11 +124,6 @@ export default {
errors,
};
},
watch: {
errors() {
console.log('HEADS UP; ERRORS CHANGED, errors.length: ', this.errors.length)
},
},
};
</script>