@@ -429,6 +429,7 @@ const totalPoints = computed(() => {
const maxPoints = parent?.points ?? Infinity;
total += Math.min(groupScore, maxPoints);
}
+ total -= (props.currentForm.deductPoints ?? 0);
return total;
});