Skip to content

Commit 5622376

Browse files
committed
chore: use correct model
1 parent 84f7b91 commit 5622376

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/packages/media/imaging/imaging.repository.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export class UmbImagingRepository extends UmbRepositoryBase implements UmbApi {
6969
* @memberof UmbImagingRepository
7070
*/
7171
async requestThumbnailUrls(uniques: Array<string>, height: number, width: number, mode = ImageCropModeModel.MIN) {
72-
const imagingModel = { height: height, width: width, mode };
72+
const imagingModel: UmbImagingModel = { height, width, mode };
7373
return this.requestResizedItems(uniques, imagingModel);
7474
}
7575
}

0 commit comments

Comments
 (0)