fix(components): wrong calculation of dimensions of embeds layouts

This commit is contained in:
kaname-png 2022-05-08 19:40:01 -06:00 committed by Paul Makles
parent 6fcdbd1cef
commit 32d37777f2
2 changed files with 4 additions and 3 deletions

View file

@ -59,7 +59,7 @@ export default function Embed({ embed }: Props) {
if (embed.type === "Text") { if (embed.type === "Text") {
mw = MAX_EMBED_WIDTH; mw = MAX_EMBED_WIDTH;
mh = 0; mh = 1;
} else { } else {
switch (embed.special?.type) { switch (embed.special?.type) {
case "YouTube": case "YouTube":

View file

@ -582,8 +582,9 @@ export const MyBots = observer(() => {
x.interactions_url = x.interactions_url =
changes.interactions_url; changes.interactions_url;
if ( if (
changes.remove === changes.remove?.includes(
["InteractionsURL"] "InteractionsURL",
)
) )
x.interactions_url = undefined; x.interactions_url = undefined;
} }