Fix MoreStickers Image Crash

This commit is contained in:
thororen1234 2025-02-22 12:28:29 -05:00
parent a77c475bf3
commit 1930ba65eb
No known key found for this signature in database

View file

@ -49,7 +49,7 @@ const StickerPackMetadata = ({ meta, hoveredStickerPackId, setHoveredStickerPack
height: "96px", height: "96px",
width: "96px", width: "96px",
}}></div> }}></div>
<img src={meta.logo.image} width="96" {...noDrag} /> {meta.logo?.image ? <img src={meta.logo.image} width="96" {...noDrag} /> : null}
<button <button
className={hoveredStickerPackId === meta.id ? "show" : ""} className={hoveredStickerPackId === meta.id ? "show" : ""}
onClick={async () => { onClick={async () => {