Skip to content

Commit e839245

Browse files
committed
fix(installer): default environment to X11
1 parent f19f65a commit e839245

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/InteractiveInstaller.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const selectedDistro = ref(distros[0]?.name || '');
2222
const selectedMethod = ref<string>(methods[0] || '');
2323
const selectedShell = ref<string>(shells[0] || '');
2424
const selectedDe = ref<string>(deWms[0] || '');
25-
const selectedEnv = ref<string>(environments[1] || '');
25+
const selectedEnv = ref<string>(environments[0] || '');
2626
const selectedInit = ref<string>(initSystems[0] || 'systemd');
2727
2828
const needsUserCreation = computed(() => {

0 commit comments

Comments
 (0)