diff options
author | Paul Frazee <pfrazee@gmail.com> | 2024-05-06 15:30:54 -0700 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2024-05-06 15:30:54 -0700 |
commit | e1940983a3b02e06ddd209c836648d993c281679 (patch) | |
tree | 1be4b1cbf161708acd13878aa182915bff516146 /src/state/modals/index.tsx | |
parent | 136b0e12abe4c4c00c15374c018dee36c522ec38 (diff) | |
parent | bf7aee19b8fc0dfb31376f814d883b654b5db8a1 (diff) | |
download | voidsky-e1940983a3b02e06ddd209c836648d993c281679.tar.zst |
Merge branch 'fix-banner-cropper' of https://github.com/piotrpalek/social-app into piotrpalek-fix-banner-cropper
Diffstat (limited to 'src/state/modals/index.tsx')
-rw-r--r-- | src/state/modals/index.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/state/modals/index.tsx b/src/state/modals/index.tsx index 0f61a9711..cf82bcd07 100644 --- a/src/state/modals/index.tsx +++ b/src/state/modals/index.tsx @@ -47,6 +47,7 @@ export interface EditImageModal { export interface CropImageModal { name: 'crop-image' uri: string + dimensions?: {width: number; height: number} onSelect: (img?: RNImage) => void } |