update vesktop build target name

This commit is contained in:
Vendicated 2025-04-04 22:59:21 +02:00
parent 8d0256bde8
commit 7246bface3
No known key found for this signature in database
GPG key ID: D66986BAF75ECF18
5 changed files with 8 additions and 8 deletions

View file

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