From 3142e5381d7f63013474ab3734e335f48f8c178e Mon Sep 17 00:00:00 2001 From: Austin Mroz Date: Mon, 1 Dec 2025 17:50:09 -0800 Subject: [PATCH] Fix first workflow swap skipped --- src/stores/subgraphNavigationStore.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/stores/subgraphNavigationStore.ts b/src/stores/subgraphNavigationStore.ts index 9211327fe8..85092836b7 100644 --- a/src/stores/subgraphNavigationStore.ts +++ b/src/stores/subgraphNavigationStore.ts @@ -207,6 +207,7 @@ export const useSubgraphNavigationStore = defineStore( async function updateHash() { if (blockHashUpdate) return if (!routeHash.value) { + initialLoad = false await router.replace( '#' + (window.location.hash.slice(1) || app.graph.id) )