about summary refs log tree commit diff
path: root/src/screens/Onboarding/StepProfile/index.tsx
diff options
context:
space:
mode:
authorHailey <me@haileyok.com>2024-06-19 16:20:43 -0700
committerGitHub <noreply@github.com>2024-06-20 02:20:43 +0300
commit89d99a87019aced9008f33e37e55bd98ec8a7084 (patch)
tree60cfd6e6d01b658cc57580a49bf86e003d3d9e69 /src/screens/Onboarding/StepProfile/index.tsx
parent5c31859f7bb753b07752e2b8faf2248561c46c54 (diff)
downloadvoidsky-89d99a87019aced9008f33e37e55bd98ec8a7084.tar.zst
use 1000x1000 for image height in avatar cropper (#4453)
Diffstat (limited to 'src/screens/Onboarding/StepProfile/index.tsx')
-rw-r--r--src/screens/Onboarding/StepProfile/index.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/screens/Onboarding/StepProfile/index.tsx b/src/screens/Onboarding/StepProfile/index.tsx
index 3556bba7a..5304aa503 100644
--- a/src/screens/Onboarding/StepProfile/index.tsx
+++ b/src/screens/Onboarding/StepProfile/index.tsx
@@ -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,
       })
     }