Skip to content
This repository was archived by the owner on Nov 6, 2025. It is now read-only.

Commit dc85294

Browse files
committed
fix: remove unused backing field
1 parent 91419bd commit dc85294

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

src/packages/media/media/components/input-rich-media/input-rich-media.element.ts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -122,13 +122,7 @@ export class UmbInputRichMediaElement extends UUIFormControlMixin(UmbLitElement,
122122
}
123123

124124
@property({ type: Array })
125-
public set preselectedCrops(value: Array<UmbCropModel>) {
126-
this.#preselectedCrops = value;
127-
}
128-
public get preselectedCrops(): Array<UmbCropModel> {
129-
return this.#preselectedCrops;
130-
}
131-
#preselectedCrops: Array<UmbCropModel> = [];
125+
public preselectedCrops?: Array<UmbCropModel>;
132126

133127
@property({ type: Boolean })
134128
public set focalPointEnabled(value: boolean) {

0 commit comments

Comments
 (0)