From 8cb111116d24a542b41835b08b140d5827c66863 Mon Sep 17 00:00:00 2001 From: Dennis Kats Date: Fri, 31 Oct 2025 14:32:32 -0400 Subject: [PATCH] fix view transition stalling with empty onDefaultTransitionIndicator --- src/main.jsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main.jsx b/src/main.jsx index 8a53234..f7f985c 100644 --- a/src/main.jsx +++ b/src/main.jsx @@ -69,5 +69,7 @@ export default function App() { ); } -const root = createRoot(document.getElementById("root"), {}); +const root = createRoot(document.getElementById("root"), { + onDefaultTransitionIndicator: () => {} +}); root.render();