feat: less bad installations

This commit is contained in:
2025-02-23 20:54:47 +01:00
parent caead1e70f
commit 6236b8ef96
13 changed files with 124 additions and 58 deletions

View File

@ -13,8 +13,9 @@ const props = defineProps({
pkg: Object as () => Package,
});
const toggle = (value: boolean) => {
const toggle = async (value: boolean) => {
store.toggle(props.pkg, value);
await store.reloadProfile();
};
</script>