mirror of
https://github.com/Equicord/Equicord.git
synced 2025-02-24 17:19:00 -05:00
Fix MoreStickers Image Crash
This commit is contained in:
parent
a77c475bf3
commit
1930ba65eb
1 changed files with 1 additions and 1 deletions
|
@ -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 () => {
|
||||||
|
|
Loading…
Add table
Reference in a new issue