refactor(settings): remove unused parameter

Removed unused oldValue parameter in the selection component.
This commit is contained in:
2026-07-28 20:10:28 +02:00
parent e0e2033fdf
commit 641cc4956d
@@ -56,7 +56,7 @@ const store = useSettingsStore();
const optionType = computed(() => props.setting.allowMultiple ? 'checkbox' : 'radio');
const selected = ref(normalizeSelectedValue(store.get(props.path) ?? props.setting.default));
watch(selected, (newValue, oldValue) => {
watch(selected, (newValue) => {
store.set(props.path, newValue);
});
</script>