diff --git a/src/components/common/StickerView.tsx b/src/components/common/StickerView.tsx index c9964fd56..11b3c74d5 100644 --- a/src/components/common/StickerView.tsx +++ b/src/components/common/StickerView.tsx @@ -162,6 +162,7 @@ const StickerView: FC = ({ thumbClassName, 'sticker-media', )} + style={filterStyle} alt="" draggable={false} /> diff --git a/src/components/common/reactions/CustomEmojiEffect.tsx b/src/components/common/reactions/CustomEmojiEffect.tsx index 14cabfa18..8298a93fb 100644 --- a/src/components/common/reactions/CustomEmojiEffect.tsx +++ b/src/components/common/reactions/CustomEmojiEffect.tsx @@ -31,7 +31,7 @@ const CustomEmojiEffect: FC = ({ particleSize, onEnded, }) => { - const stickerHash = getStickerHashById(reaction.documentId); + const stickerHash = getStickerHashById(reaction.documentId, true); const previewMediaData = useMedia(!isLottie ? stickerHash : undefined);