Revert "Bob The Fixer"

This reverts commit 9f4c4f30ab.
This commit is contained in:
thororen1234 2024-09-16 14:41:47 -04:00
parent 23dd136416
commit a48676460b
6 changed files with 8 additions and 12 deletions

View file

@ -176,12 +176,11 @@ function ExcludedPluginsList({ search }: { search: string; }) {
const matchingExcludedPlugins = Object.entries(ExcludedPlugins)
.filter(([name]) => name.toLowerCase().includes(search));
const ExcludedReasons: Record<"web" | "discordDesktop" | "vencordDesktop" | "equicordDesktop" | "fullcordDesktop" | "desktop" | "dev", string> = {
const ExcludedReasons: Record<"web" | "discordDesktop" | "vencordDesktop" | "equicordDesktop" | "desktop" | "dev", string> = {
desktop: "Discord Desktop app or Vesktop",
discordDesktop: "Discord Desktop app",
vencordDesktop: "Vesktop app",
equicordDesktop: "Equibop app",
fullcordDesktop: "Equibop and Vesktop apps",
web: "Vesktop app and the Web version of Discord",
dev: "Developer version of Equicord"
};