diff options
author | Vendicated <vendicated@riseup.net> | 2023-01-25 21:06:22 +0100 |
---|---|---|
committer | Vendicated <vendicated@riseup.net> | 2023-01-25 21:06:22 +0100 |
commit | 49aacccc1955f5e15aadec2242000384b3fe499d (patch) | |
tree | 6f7771f0f9efafc2a93cccf9e5256ba267c5d1f3 /src/plugins | |
parent | 6ab4b48b47eebc12c9d74de669e224045030b457 (diff) | |
download | Vencord-49aacccc1955f5e15aadec2242000384b3fe499d.tar.gz Vencord-49aacccc1955f5e15aadec2242000384b3fe499d.tar.bz2 Vencord-49aacccc1955f5e15aadec2242000384b3fe499d.zip |
shc: Make topic not inline
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/showHiddenChannels.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/showHiddenChannels.tsx b/src/plugins/showHiddenChannels.tsx index c969b30..e1eff86 100644 --- a/src/plugins/showHiddenChannels.tsx +++ b/src/plugins/showHiddenChannels.tsx @@ -210,7 +210,7 @@ export default definePlugin({ {channel.type === ChannelTypes.GUILD_FORUM ? "Guidelines:" : "Topic:"} </Text> <div style={{ color: "var(--text-normal)", marginTop: 10 }}> - {Parser.parseTopic(channel.topic, true, { channelId: channel.id })} + {Parser.parseTopic(channel.topic, false, { channelId: channel.id })} </div> </> )} |