diff --git a/src/routes/repos/[npub]/[repo]/+page.svelte b/src/routes/repos/[npub]/[repo]/+page.svelte index fe6e68b..addcd89 100644 --- a/src/routes/repos/[npub]/[repo]/+page.svelte +++ b/src/routes/repos/[npub]/[repo]/+page.svelte @@ -51,7 +51,7 @@ let editedContent = $state(''); let hasChanges = $state(false); let saving = $state(false); - let branches = $state([]); + let branches = $state>([]); let currentBranch = $state('main'); let commitMessage = $state(''); let userPubkey = $state(null); @@ -2353,7 +2353,8 @@ {#if branches.length > 0} {/if} @@ -3176,7 +3177,8 @@ From Branch: