From 3a3f3627b27064d3c33d617a21f7c94c71a31f39 Mon Sep 17 00:00:00 2001 From: invpt <57822954+invpt@users.noreply.github.com> Date: Sat, 13 Apr 2024 21:20:10 -0400 Subject: [PATCH] Make sure download toast doesn't go away too soon --- src/pages/home/Home.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pages/home/Home.tsx b/src/pages/home/Home.tsx index cc5a773..41ccff6 100644 --- a/src/pages/home/Home.tsx +++ b/src/pages/home/Home.tsx @@ -104,6 +104,8 @@ export const Home: Component = () => { return "An internal error occurred while downloading the project."; } }, + }, { + duration: Infinity, }); } catch (e) { console.error("Failed to import tour bundle:", e);