Lower minimum play delay for pastes.

This commit is contained in:
Marc Brooks 2025-11-05 18:36:41 -06:00
parent 71c902c34e
commit a9a436cadc
No known key found for this signature in database
GPG Key ID: 583A6AF2D6AE1DC6
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ import { TextAreaWithLabel } from "@components/TextArea";
// uint32 max value / 4 // uint32 max value / 4
const pasteMaxLength = 1073741824; const pasteMaxLength = 1073741824;
const defaultDelay = 20; const defaultDelay = 20;
const minimumDelay = 10; const minimumDelay = 5;
const maximumDelay = 65534; const maximumDelay = 65534;
export default function PasteModal() { export default function PasteModal() {