fix(app): broken scroll in message list popouts (#49)

This commit is contained in:
hampus-fluxer
2026-01-06 04:18:38 +01:00
committed by GitHub
parent 00fcf59120
commit 21e489638b
10 changed files with 37 additions and 15 deletions

View File

@@ -32,7 +32,9 @@ export const ChannelPinsPopout = observer(({channel}: {channel: ChannelRecord})
<PushPinIcon className={styles.iconLarge} />
<h1 className={styles.title}>{t`Pinned Messages`}</h1>
</div>
<ChannelPinsContent channel={channel} />
<div className={styles.body}>
<ChannelPinsContent channel={channel} />
</div>
</div>
);
});