Increase max duration to 600s, fix storage key return

This commit is contained in:
fspecii
2026-02-04 20:13:41 +02:00
parent 39960f0961
commit 2f567580bc
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -690,7 +690,7 @@ export const CreatePanel: React.FC<CreatePanelProps> = ({ onGenerate, isGenerati
<input
type="range"
min="-1"
max="240"
max="600"
step="5"
value={duration}
onChange={(e) => setDuration(Number(e.target.value))}
@@ -1180,7 +1180,7 @@ export const CreatePanel: React.FC<CreatePanelProps> = ({ onGenerate, isGenerati
<input
type="range"
min="-1"
max="240"
max="600"
step="5"
value={duration}
onChange={(e) => setDuration(Number(e.target.value))}