diff --git a/app/src/lib/components/RemoteBranchPreview.svelte b/app/src/lib/components/RemoteBranchPreview.svelte index 4861814e1..4a6d073e1 100644 --- a/app/src/lib/components/RemoteBranchPreview.svelte +++ b/app/src/lib/components/RemoteBranchPreview.svelte @@ -63,9 +63,15 @@ {/if} {#await getRemoteBranchData(project.id, branch.name) then branchData} {#if branchData.commits && branchData.commits.length > 0} -
- {#each branchData.commits as commit (commit.id)} - +
+ {#each branchData.commits as commit, index (commit.id)} + {/each}
{/if}