`/flows/edit/${forkedPath}`}
+ onLoadFromServer={() => loadFlow()}
+ getLocalDraft={() => flowHandle.draft}
+/>
{#if notFound}
Flow not found at path {page.params.path}
diff --git a/frontend/src/routes/(root)/(logged)/scripts/edit/[...path]/+page.svelte b/frontend/src/routes/(root)/(logged)/scripts/edit/[...path]/+page.svelte
index c8c40e6831..0a18bc19be 100644
--- a/frontend/src/routes/(root)/(logged)/scripts/edit/[...path]/+page.svelte
+++ b/frontend/src/routes/(root)/(logged)/scripts/edit/[...path]/+page.svelte
@@ -1,16 +1,15 @@
-{#if !hash && $workspaceStore && page.params.path}
- loadScript()}
- getLocalDraft={() => scriptHandle.draft}
- />
-{/if}
-{#if !hash && $workspaceStore && page.params.path && otherDraftsUsers.length > 0}
- {#key page.params.path}
- `/scripts/edit/${forkedPath}`}
- />
- {/key}
-{/if}
+ `/scripts/edit/${forkedPath}`}
+ onLoadFromServer={() => loadScript()}
+ getLocalDraft={() => scriptHandle.draft}
+/>
{#if scriptHandle.draft && renderEditor}