mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-09 08:43:37 -05:00
fix(components): wrong calculation of dimensions of embeds layouts
This commit is contained in:
parent
6fcdbd1cef
commit
32d37777f2
2 changed files with 4 additions and 3 deletions
|
@ -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":
|
||||
|
|
|
@ -582,8 +582,9 @@ export const MyBots = observer(() => {
|
|||
x.interactions_url =
|
||||
changes.interactions_url;
|
||||
if (
|
||||
changes.remove ===
|
||||
["InteractionsURL"]
|
||||
changes.remove?.includes(
|
||||
"InteractionsURL",
|
||||
)
|
||||
)
|
||||
x.interactions_url = undefined;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue