Skip to content

Commit

Permalink
Nit
Browse files Browse the repository at this point in the history
  • Loading branch information
AdityaHegde committed Jan 6, 2025
1 parent a0442af commit 35c1e4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web-common/src/runtime-client/RuntimeProvider.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
.setRuntime(queryClient, host, instanceId, jwt, authContext)
.catch(console.error);
$: ({ instanceId: _instanceId, host: _host } = $runtime);
$: ({ host: _host, instanceId: _instanceId } = $runtime);
</script>

{#if _instanceId && _host}
{#if _host && _instanceId}
<slot />
{/if}

0 comments on commit 35c1e4f

Please sign in to comment.