diff options
author | Muneyuki Noguchi <nogu.dev@gmail.com> | 2023-10-10 04:29:16 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-09 12:29:16 -0700 |
commit | b12cfbe90b69d0ec1327c92a1e898be629ebf06b (patch) | |
tree | 30ec92a59354b29aab1aa7ab390351c40a591889 /src | |
parent | d85bbc1a2814d3982b5e23b1ff0790ab6d288b3b (diff) | |
download | voidsky-b12cfbe90b69d0ec1327c92a1e898be629ebf06b.tar.zst |
Fix typo in image.ts (#1638)
Diffstat (limited to 'src')
-rw-r--r-- | src/state/models/media/image.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/state/models/media/image.ts b/src/state/models/media/image.ts index 10aef0ff4..c26f9b87c 100644 --- a/src/state/models/media/image.ts +++ b/src/state/models/media/image.ts @@ -166,7 +166,7 @@ export class ImageModel implements Omit<RNImage, 'size'> { async crop() { try { // NOTE - // on ios, react-native-image-cropper gives really bad quality + // on ios, react-native-image-crop-picker gives really bad quality // without specifying width and height. on android, however, the // crop stretches incorrectly if you do specify it. these are // both separate bugs in the library. we deal with that by |