diff --git a/frontend/src/lib/components/apps/editor/AppEditorHeader.svelte b/frontend/src/lib/components/apps/editor/AppEditorHeader.svelte index 925e72009f..679470b6eb 100644 --- a/frontend/src/lib/components/apps/editor/AppEditorHeader.svelte +++ b/frontend/src/lib/components/apps/editor/AppEditorHeader.svelte @@ -206,8 +206,6 @@ async function computeTriggerables() { const items = allItems($app.grid, $app.subgrids) - console.debug('items', items) - const allTriggers: ([string, TriggerableV2] | undefined)[] = (await Promise.all( items .flatMap((x) => { diff --git a/frontend/src/routes/(root)/(logged)/apps/edit/[...path]/+page.svelte b/frontend/src/routes/(root)/(logged)/apps/edit/[...path]/+page.svelte index 2b642e62ab..471a3c1643 100644 --- a/frontend/src/routes/(root)/(logged)/apps/edit/[...path]/+page.svelte +++ b/frontend/src/routes/(root)/(logged)/apps/edit/[...path]/+page.svelte @@ -219,10 +219,10 @@ {#if app}
{ - goto(`/apps/edit/${event.detail}`) + onSavedNewAppPath={(url) => { + goto(`/apps/edit/${url}`) if (app) { - app.path = event.detail + app.path = url } }} on:restore={onRestore}