diff options
author | Paul Frazee <pfrazee@gmail.com> | 2024-05-06 15:49:52 -0700 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2024-05-06 15:49:52 -0700 |
commit | 2ca4b74955244f23aa40ac2d98267e301a59793c (patch) | |
tree | 44cf893346e80e584a0dbbc3878bb419e7203b77 /src/state/modals/index.tsx | |
parent | 136b0e12abe4c4c00c15374c018dee36c522ec38 (diff) | |
parent | fe82257801f49b3d7aceca9dd611ef4005da48ce (diff) | |
download | voidsky-2ca4b74955244f23aa40ac2d98267e301a59793c.tar.zst |
Merge branch 'piotrpalek-fix-banner-cropper' into main
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 } |