Fix Buttons
Some checks are pending
Sync to Codeberg / Sync Codeberg and Github (push) Waiting to run
Test / Test (push) Waiting to run

This commit is contained in:
thororen1234 2025-02-23 08:11:10 -05:00
parent a0cb4624bc
commit aa37b853f1
No known key found for this signature in database

View file

@ -292,19 +292,19 @@ export default definePlugin({
} }
if (props.channel.id === SUPPORT_CHANNEL_ID) { if (props.channel.id === SUPPORT_CHANNEL_ID) {
if (props.message.content.includes("/vencord-debug") || props.message.content.includes("/vencord-plugins")) { if (props.message.content.includes("/equicord-debug") || props.message.content.includes("/equicord-plugins")) {
buttons.push( buttons.push(
<Button <Button
key="vc-dbg" key="vc-dbg"
onClick={async () => sendMessage(props.channel.id, { content: await generateDebugInfoMessage() })} onClick={async () => sendMessage(props.channel.id, { content: await generateDebugInfoMessage() })}
> >
Run /vencord-debug Run /equicord-debug
</Button>, </Button>,
<Button <Button
key="vc-plg-list" key="vc-plg-list"
onClick={async () => sendMessage(props.channel.id, { content: generatePluginList() })} onClick={async () => sendMessage(props.channel.id, { content: generatePluginList() })}
> >
Run /vencord-plugins Run /equicord-plugins
</Button> </Button>
); );
} }