Don't render the active client app screen until the router is loaded to avoid a wasted render

This commit is contained in:
Andrew Kingston 2022-01-25 11:21:42 +00:00
parent 502a3bd8eb
commit bca6f34959
1 changed files with 7 additions and 5 deletions

View File

@ -20,8 +20,10 @@
</script> </script>
<!-- Ensure to fully remount when screen changes --> <!-- Ensure to fully remount when screen changes -->
{#if $routeStore.routerLoaded}
{#key screenDefinition?._id} {#key screenDefinition?._id}
<Provider key="url" data={params}> <Provider key="url" data={params}>
<Component isScreen instance={screenDefinition} /> <Component isScreen instance={screenDefinition} />
</Provider> </Provider>
{/key} {/key}
{/if}