aboutsummaryrefslogtreecommitdiff
path: root/src/plugins
diff options
context:
space:
mode:
authorVendicated <vendicated@riseup.net>2023-01-25 21:06:22 +0100
committerVendicated <vendicated@riseup.net>2023-01-25 21:06:22 +0100
commit49aacccc1955f5e15aadec2242000384b3fe499d (patch)
tree6f7771f0f9efafc2a93cccf9e5256ba267c5d1f3 /src/plugins
parent6ab4b48b47eebc12c9d74de669e224045030b457 (diff)
downloadVencord-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.tsx2
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>
</>
)}