Don't allow setting a retry period below 5 seconds, default to 10

This commit is contained in:
Matt Rubens
2025-01-24 12:55:15 -05:00
parent 9279904366
commit cda44d52d4
2 changed files with 3 additions and 3 deletions

View File

@@ -281,7 +281,7 @@ const SettingsView = ({ onDone }: SettingsViewProps) => {
<div style={{ display: "flex", alignItems: "center", gap: "10px" }}>
<input
type="range"
min="0"
min="5"
max="100"
step="1"
value={requestDelaySeconds}