refactor(settings): remove unused setting class

This commit is contained in:
2026-07-28 20:08:23 +02:00
committed by jakob.scheid
parent 76b4887205
commit e4bd6df2d5
@@ -40,11 +40,6 @@ const props = defineProps({
<div
v-for="setting in props.setting.content"
class="setting"
:class="{
switch: setting.type === 'bool',
input: setting.type === 'number' || setting.type === 'string',
selection: setting.type === 'selection'
}"
>
<Switch
v-if="setting.type === 'bool'"