Fix cancel sending sticker (#447)

This commit is contained in:
saltrafael 2021-12-08 11:17:22 -03:00 committed by GitHub
parent 89cf411d18
commit 9ec1b17515
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -692,6 +692,7 @@ export function CommentCreate(props: Props) {
} else if (stickerSelector || isReviewingStickerComment) { } else if (stickerSelector || isReviewingStickerComment) {
setReviewingStickerComment(false); setReviewingStickerComment(false);
setStickerSelector(false); setStickerSelector(false);
setSelectedSticker(null);
} else if (isReply && !minTip && onCancelReplying) { } else if (isReply && !minTip && onCancelReplying) {
onCancelReplying(); onCancelReplying();
} }