refactor: remove stop as a possible end action

This commit is contained in:
Carlos Valente
2025-03-23 22:01:33 +01:00
committed by Carlos Valente
parent 69eb9a5eff
commit 4ed38340e0
6 changed files with 3 additions and 12 deletions
@@ -102,7 +102,6 @@ export default function EditorSettingsForm() {
onChange={(event) => setDefaultEndAction(event.target.value as EndAction)}
>
<option value={EndAction.None}>None</option>
<option value={EndAction.Stop}>Stop</option>
<option value={EndAction.LoadNext}>Load next</option>
<option value={EndAction.PlayNext}>Play next</option>
</Select>