diff options
Diffstat (limited to 'src/view/com/composer')
-rw-r--r-- | src/view/com/composer/photos/OpenCameraBtn.tsx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/view/com/composer/photos/OpenCameraBtn.tsx b/src/view/com/composer/photos/OpenCameraBtn.tsx index fb3ab5c8f..1c9440eb1 100644 --- a/src/view/com/composer/photos/OpenCameraBtn.tsx +++ b/src/view/com/composer/photos/OpenCameraBtn.tsx @@ -35,9 +35,7 @@ export function OpenCameraBtn({disabled, onAdd}: Props) { } const img = await openCamera({ - width: POST_IMG_MAX.width, - height: POST_IMG_MAX.height, - freeStyleCropEnabled: true, + aspect: [POST_IMG_MAX.width, POST_IMG_MAX.height], }) // If we don't have permissions it's fine, we just wont save it. The post itself will still have access to |