use 1000x1000 for image height in avatar cropper (#4453)

zio/stable
Hailey 2024-06-19 16:20:43 -07:00 committed by GitHub
parent 5c31859f7b
commit 89d99a8701
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View File

@ -181,8 +181,8 @@ export function StepProfile() {
image = await openCropper({
mediaType: 'photo',
cropperCircleOverlay: true,
height: image.height,
width: image.width,
height: 1000,
width: 1000,
path: image.path,
})
}

View File

@ -303,8 +303,8 @@ let EditableUserAvatar = ({
const croppedImage = await openCropper({
mediaType: 'photo',
cropperCircleOverlay: true,
height: item.height,
width: item.width,
height: 1000,
width: 1000,
path: item.path,
})