diff --git a/apps/desktop/src/components/BranchesView.svelte b/apps/desktop/src/components/BranchesView.svelte index f3b875032c..027bfed776 100644 --- a/apps/desktop/src/components/BranchesView.svelte +++ b/apps/desktop/src/components/BranchesView.svelte @@ -74,7 +74,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;