From 3203acf971c271bda63f1fda2a57293c3b9d8622 Mon Sep 17 00:00:00 2001 From: Pavel Laptev Date: Thu, 14 Mar 2024 11:42:49 +0100 Subject: [PATCH] refactor: Remove unused code --- .../src/lib/components/UpstreamCommits.svelte | 56 ------------------- 1 file changed, 56 deletions(-) delete mode 100644 gitbutler-ui/src/lib/components/UpstreamCommits.svelte diff --git a/gitbutler-ui/src/lib/components/UpstreamCommits.svelte b/gitbutler-ui/src/lib/components/UpstreamCommits.svelte deleted file mode 100644 index dc04e855d..000000000 --- a/gitbutler-ui/src/lib/components/UpstreamCommits.svelte +++ /dev/null @@ -1,56 +0,0 @@ - - -{#if upstream} -
-
- Upstream {upstream.commits.length > 1 ? 'commits' : 'commit'} -
-
- {#each upstream.commits as commit (commit.id)} -
- -
- {/each} - {#if branchCount > 1} -
-
- You have {branchCount} active branches. To merge upstream work, we will unapply all other - branches. -
-
- {/if} -
- -
-{/if}