From 7f919b425c8a861e8a760a0fbb07a6f7bf64d905 Mon Sep 17 00:00:00 2001 From: Ilyes Hernandez Date: Thu, 7 May 2026 22:58:26 +0200 Subject: [PATCH] feat(dorion-settings): remove the option to enable or disable shelter client mod --- .../components/ClientModList.tsx | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/plugins/dorion-settings/components/ClientModList.tsx b/plugins/dorion-settings/components/ClientModList.tsx index 46a3b13..c0b6949 100644 --- a/plugins/dorion-settings/components/ClientModList.tsx +++ b/plugins/dorion-settings/components/ClientModList.tsx @@ -89,26 +89,13 @@ export function ClientModList(props: Props) { )} {clientMods().map((modName: string) => { - const isVencordOrEquicord = modName === 'Vencord' || modName === 'Equicord' - const isMutuallyExcluded = isVencordOrEquicord && ( - (modName === 'Vencord' && settings().client_mods?.includes('Equicord')) || - (modName === 'Equicord' && settings().client_mods?.includes('Vencord')) - ) - - let note = '' - if (modName === 'Shelter') { - note = 'Shelter is required for Dorion to function properly.' + return null } return ( - onClientModToggle(modName) - } - note={note} + onChange={() => onClientModToggle(modName)} > Enable {modName}