Skip to content

Commit 9b45e87

Browse files
author
farfromrefug
committed
chore: cleanup
1 parent d23bd42 commit 9b45e87

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/ui-cameraview/index.android.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,6 @@ export class CameraView extends CameraViewBase {
233233
this.nativeViewProtected.setCaptureMode(value);
234234
}
235235
[pictureSizeProperty.setNative](value: { width: number; height: number } | `${number}x${number}`) {
236-
console.log('pictureSizeProperty.setNative', value);
237236
const actualValue = !value ? (value as string) : typeof value === 'string' ? value : `${value.width}x${value.height}`;
238237
this.nativeViewProtected.setPictureSize(actualValue);
239238
}
@@ -244,7 +243,6 @@ export class CameraView extends CameraViewBase {
244243
this.nativeViewProtected.setScaleType(getScaleType(value));
245244
}
246245
[aspectRatioProperty.setNative](value) {
247-
console.log('aspectRatioProperty.setNative', value);
248246
this.nativeViewProtected.setAspectRatio(value);
249247
}
250248
[flashModeProperty.setNative](value: string | number) {

0 commit comments

Comments
 (0)