Skip to content

Commit

Permalink
Gated group info (#796)
Browse files Browse the repository at this point in the history
* fix: uncommented group info

* fix: fixed image size and group type text (#790)

* feat: changed styled-components version and changed header and sub header in type of group (#788)

* fix: fixed lint issues in chat (#784)

* feat: changed styled-components version

* fix: changed header and subheader as per the instructions

---------

Co-authored-by: Monalisha Mishra <[email protected]>
Co-authored-by: Monalisha Mishra <[email protected]>

* fix: adde chat id in group info

* fix: added click to copy

* feat: group info loading done (#793)

* feat: group info loading done

* feat: logs cleared

* fix: fixed minor issues

---------

Co-authored-by: Monalisha Mishra <[email protected]>

* fix: fixed build issues

---------

Co-authored-by: Satyam <[email protected]>
Co-authored-by: Abishek Bashyal <[email protected]>
  • Loading branch information
3 people authored Oct 19, 2023
1 parent 5aa18e1 commit 49d3374
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,16 @@ const AutoImageClipper = (props: { imageSrc: any; onImageCropped: any; width: an
const croppedImage = await getCroppedImg(imageSrc, croppedAreaPixels!);
const image = await resizeFile(croppedImage);
onImageCropped(image);

return;

} else {
return "Nothing";
return;
}
} catch (e) {
console.error(e);

return;
}
}
showCroppedImage();
Expand Down

0 comments on commit 49d3374

Please sign in to comment.