diff --git a/libs/components/src/form-field/form-field.component.ts b/libs/components/src/form-field/form-field.component.ts index 15192fc6502..a32bbe7543d 100644 --- a/libs/components/src/form-field/form-field.component.ts +++ b/libs/components/src/form-field/form-field.component.ts @@ -8,7 +8,6 @@ import { HostListener, Input, ViewChild, - booleanAttribute, signal, } from "@angular/core"; @@ -68,13 +67,6 @@ export class BitFormFieldComponent implements AfterContentChecked { return borderClasses.join(" "); } - /** - * NOTE: Placeholder to match the API of the form-field component in the `ps/extension` branch, - * no functionality is implemented as of now. - */ - @Input({ transform: booleanAttribute }) - disableReadOnlyBorder = false; - @HostBinding("class") get classList() { return ["tw-block", "tw-pt-2"].concat(this.disableMargin ? [] : ["tw-mb-4"]);