Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

authored by

Hailey and committed by
GitHub
89d99a87 5c31859f

+4 -4
+2 -2
src/screens/Onboarding/StepProfile/index.tsx
··· 181 181 image = await openCropper({ 182 182 mediaType: 'photo', 183 183 cropperCircleOverlay: true, 184 - height: image.height, 185 - width: image.width, 184 + height: 1000, 185 + width: 1000, 186 186 path: image.path, 187 187 }) 188 188 }
+2 -2
src/view/com/util/UserAvatar.tsx
··· 303 303 const croppedImage = await openCropper({ 304 304 mediaType: 'photo', 305 305 cropperCircleOverlay: true, 306 - height: item.height, 307 - width: item.width, 306 + height: 1000, 307 + width: 1000, 308 308 path: item.path, 309 309 }) 310 310