From 47e1d02765e587ee154343b425bbc0672c3be609 Mon Sep 17 00:00:00 2001 From: peaklabs-dev <122374094+peaklabs-dev@users.noreply.github.com> Date: Sun, 10 Aug 2025 16:58:10 +0200 Subject: [PATCH] wip --- apps/desktop/src/components/BranchesView.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/desktop/src/components/BranchesView.svelte b/apps/desktop/src/components/BranchesView.svelte index 64ad6961d6..bd2001835b 100644 --- a/apps/desktop/src/components/BranchesView.svelte +++ b/apps/desktop/src/components/BranchesView.svelte @@ -80,7 +80,7 @@ } }); - async function checkoutBranch() { + async function checkoutBranch() { // This can probably be used in the modal to checkout an existing branch. const { branchName, remote, prNumber, hasLocal } = branchesState.current; const remoteRef = remote ? `refs/remotes/${remote}/${branchName}` : undefined; const branchRef = hasLocal ? `refs/heads/${branchName}` : remoteRef;