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") {
mw = MAX_EMBED_WIDTH;
mh = 0;
mh = 1;
} else {
switch (embed.special?.type) {
case "YouTube":