From d76856008d063cd2b59c44f2389f5ec771eec0af Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Tue, 31 Mar 2026 17:44:25 +0200 Subject: [PATCH] Update file input handlers in App.tsx --- src/app/App.tsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/app/App.tsx b/src/app/App.tsx index 57c54953..7ff48e60 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -3966,7 +3966,14 @@ export function App({ store, initialStatusMessage }: AppProps) { className="visually-hidden" type="file" accept=".json,application/json" - onChange={handleImportChange} + onChange={handleImportJsonChange} + /> + );