fix: broken list

This commit is contained in:
2025-03-17 02:26:17 +00:00
parent af4929a5b3
commit fe1a32f31b
7 changed files with 23 additions and 20 deletions

View File

@ -40,7 +40,7 @@ const group = () => {
};
const missing = computed(() => {
return prf.current?.mods.filter((m) => !pkgs.hasLocal(m));
return prf.current?.mods.filter((m) => !pkgs.hasLocal(m)) ?? [];
});
</script>