diff --git a/ts/import-csv/Preview.svelte b/ts/import-csv/Preview.svelte
index a5ee43c3f..b8f937ae1 100644
--- a/ts/import-csv/Preview.svelte
+++ b/ts/import-csv/Preview.svelte
@@ -10,31 +10,41 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
export let preview: Generic.StringList[];
-
- {#each columnOptions.slice(1) as { label }}
-
- {label}
- |
- {/each}
- {#each preview as row}
-
- {#each row.vals as cell}
- {cell} |
- {/each}
-
- {/each}
-
+
+
+ {#each columnOptions.slice(1) as { label }}
+
+ {label}
+ |
+ {/each}
+ {#each preview as row}
+
+ {#each row.vals as cell}
+ {cell} |
+ {/each}
+
+ {/each}
+
+