From 1ce81e73470bb0dbf90a4733d809625a81f18997 Mon Sep 17 00:00:00 2001 From: Davide Wietlisbach Date: Fri, 26 Sep 2025 16:30:23 +0200 Subject: [PATCH] fix: increase rejection delay for opening files with legacy api (#8961) * Increased input change interval to 1000 ms to fix IOS 18 file opening issue * increase more --------- Co-authored-by: dwelle <5153846+dwelle@users.noreply.github.com> --- packages/excalidraw/data/filesystem.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/excalidraw/data/filesystem.ts b/packages/excalidraw/data/filesystem.ts index 44474a6f61..4a8d43c35f 100644 --- a/packages/excalidraw/data/filesystem.ts +++ b/packages/excalidraw/data/filesystem.ts @@ -14,7 +14,7 @@ import type { FileSystemHandle } from "browser-fs-access"; type FILE_EXTENSION = Exclude; -const INPUT_CHANGE_INTERVAL_MS = 500; +const INPUT_CHANGE_INTERVAL_MS = 5000; export const fileOpen = async (opts: { extensions?: FILE_EXTENSION[];