MessageLinkEmbeds: fix display when using compact mode

This commit is contained in:
Vendicated 2024-06-12 04:48:42 +02:00
parent 008227cdfc
commit 40c5ade82d
No known key found for this signature in database
GPG key ID: D66986BAF75ECF18

View file

@ -281,6 +281,8 @@ function getChannelLabelAndIconUrl(channel: Channel) {
}
function ChannelMessageEmbedAccessory({ message, channel }: MessageEmbedProps): JSX.Element | null {
const compact = TextAndImagesSettingsStores.MessageDisplayCompact.useSetting();
const dmReceiver = UserStore.getUser(ChannelStore.getChannel(channel.id).recipients?.[0]);
const [channelLabel, iconUrl] = getChannelLabelAndIconUrl(channel);
@ -305,6 +307,7 @@ function ChannelMessageEmbedAccessory({ message, channel }: MessageEmbedProps):
message={message}
channel={channel}
subscribeToComponentDispatch={false}
compact={compact}
/>
</div>
)}