mirror of
https://github.com/Equicord/Equicord.git
synced 2025-06-14 00:53:04 -04:00
Fix Import
This commit is contained in:
parent
325377b38e
commit
f00748918c
1 changed files with 1 additions and 2 deletions
|
@ -27,7 +27,6 @@ import { openPluginModal } from "@components/PluginSettings/PluginModal";
|
||||||
import { AddonCard } from "@components/VencordSettings/AddonCard";
|
import { AddonCard } from "@components/VencordSettings/AddonCard";
|
||||||
import { QuickAction, QuickActionCard } from "@components/VencordSettings/quickActions";
|
import { QuickAction, QuickActionCard } from "@components/VencordSettings/quickActions";
|
||||||
import { SettingsTab, wrapTab } from "@components/VencordSettings/shared";
|
import { SettingsTab, wrapTab } from "@components/VencordSettings/shared";
|
||||||
import { isPluginEnabled } from "@plugins/index";
|
|
||||||
import { openInviteModal } from "@utils/discord";
|
import { openInviteModal } from "@utils/discord";
|
||||||
import { openModal } from "@utils/modal";
|
import { openModal } from "@utils/modal";
|
||||||
import { showItemInFolder } from "@utils/native";
|
import { showItemInFolder } from "@utils/native";
|
||||||
|
@ -96,7 +95,7 @@ interface UserCSSCardProps {
|
||||||
|
|
||||||
function UserCSSThemeCard({ theme, enabled, onChange, onDelete, onSettingsReset }: UserCSSCardProps) {
|
function UserCSSThemeCard({ theme, enabled, onChange, onDelete, onSettingsReset }: UserCSSCardProps) {
|
||||||
const missingPlugins = useMemo(() =>
|
const missingPlugins = useMemo(() =>
|
||||||
theme.requiredPlugins?.filter(p => !isPluginEnabled(p)), [theme]);
|
theme.requiredPlugins?.filter(p => !Vencord.Plugins.isPluginEnabled(p)), [theme]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<AddonCard
|
<AddonCard
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue