File tree Expand file tree Collapse file tree
src/components/views/LocalModList Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -31,8 +31,6 @@ const props = defineProps<LocalModCardProps>();
3131const { isConcerningPackage, wasConcerningPackage } = useConcerningPackageComposable ();
3232const { uninstallMod } = useModManagementComposable ();
3333
34- const disabledDependencies = ref <ManifestV2 []>([]);
35- const missingDependencies = ref <string []>([]);
3634const disableChangePending = ref <boolean >(false );
3735const icon = useModIcon (() => props .mod );
3836
@@ -44,7 +42,6 @@ const isDeprecated = computed(() => store.state.tsMods.deprecated.get(props.mod.
4442const isLatestVersion = computed (() => store .getters [' tsMods/isLatestVersion' ](props .mod ));
4543const localModList = computed (() => store .state .profile .modList );
4644const tsMod = computed <ThunderstoreMod >(() => store .getters [' tsMods/tsMod' ](props .mod ));
47- const isConcerningPackage = computed <boolean >(() => vulnerablePackages .value .findIndex (value => value .getName () === props .mod .getName ()) >= 0 )
4845
4946const unsatisfiedDependencies = computed <UnsatisfiedDependencies | undefined >(() =>
5047 store .getters [' profile/unsatisfiedDependencies' ].get (props .mod .getName ())
You can’t perform that action at this time.
0 commit comments