diff --git a/packages/client/src/components/app/container/GridContainer.svelte b/packages/client/src/components/app/container/GridContainer.svelte index 8e8621c1a6..d97e7ceafb 100644 --- a/packages/client/src/components/app/container/GridContainer.svelte +++ b/packages/client/src/components/app/container/GridContainer.svelte @@ -1,50 +1,136 @@
-
- {#each { length: cols * rows } as _} -
- {/each} -
+ {#if $builderStore.inBuilder} +
+ {#each { length: GridColumns * rows } as _, idx} +
+ {/each} +
+ {/if} - {#if !empty} + {#if !empty && mounted} {/if}
@@ -52,7 +138,6 @@