Skip to content

Commit ba5cdc9

Browse files
committed
Fixed duplicate definition after rebase
1 parent b945900 commit ba5cdc9

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

src/components/views/LocalModList/LocalModCard.vue

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ const props = defineProps<LocalModCardProps>();
3131
const { isConcerningPackage, wasConcerningPackage } = useConcerningPackageComposable();
3232
const { uninstallMod } = useModManagementComposable();
3333
34-
const disabledDependencies = ref<ManifestV2[]>([]);
35-
const missingDependencies = ref<string[]>([]);
3634
const disableChangePending = ref<boolean>(false);
3735
const icon = useModIcon(() => props.mod);
3836
@@ -44,7 +42,6 @@ const isDeprecated = computed(() => store.state.tsMods.deprecated.get(props.mod.
4442
const isLatestVersion = computed(() => store.getters['tsMods/isLatestVersion'](props.mod));
4543
const localModList = computed(() => store.state.profile.modList);
4644
const 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
4946
const unsatisfiedDependencies = computed<UnsatisfiedDependencies | undefined>(() =>
5047
store.getters['profile/unsatisfiedDependencies'].get(props.mod.getName())

0 commit comments

Comments
 (0)