Fix: Remove unneeded argument.

This commit is contained in:
Paul
2021-06-20 17:36:20 +01:00
parent d0b9cf9090
commit 0461c7e0dd
2 changed files with 2 additions and 2 deletions

View File

@@ -24,7 +24,7 @@ export function ChannelInfo({ channel_id, onClose }: Props) {
<Modal visible={true} onClose={onClose}>
<div className={styles.info}>
<div className={styles.header}>
<h1>{ getChannelName(ctx.client, channel, [ ], true) }</h1>
<h1>{ getChannelName(ctx.client, channel, true) }</h1>
<div onClick={onClose}>
<X size={36} />
</div>