From e97b89e8e6e899815dedd0088eb4a33a32cf183a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Delaporte-Mathurin?= <40028739+RemDelaporteMathurin@users.noreply.github.com> Date: Thu, 21 Aug 2025 18:17:13 +0000 Subject: [PATCH] removed fuel cycle script as suggestion --- src/App.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App.jsx b/src/App.jsx index 7003faa..c75837f 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -720,7 +720,7 @@ const DnDFlow = () => { try { // Modern approach: Use File System Access API for proper "Save As" dialog const fileHandle = await window.showSaveFilePicker({ - suggestedName: 'fuel_cycle_script.py', + suggestedName: 'pathsim_script.py', types: [{ description: 'Python files', accept: { @@ -746,7 +746,7 @@ const DnDFlow = () => { const url = URL.createObjectURL(blob); const a = document.createElement('a'); a.href = url; - a.download = 'fuel_cycle_script.py'; + a.download = 'pathsim_script.py'; document.body.appendChild(a); a.click(); document.body.removeChild(a);