diff --git a/apps/desktop/src/lib/vbranches/types.ts b/apps/desktop/src/lib/vbranches/types.ts index 8cb784f1af..b076b42504 100644 --- a/apps/desktop/src/lib/vbranches/types.ts +++ b/apps/desktop/src/lib/vbranches/types.ts @@ -188,10 +188,7 @@ export class DetailedCommit { get status(): CommitStatus { if (this.isIntegrated) return 'integrated'; - if ( - (this.isRemote && (!this.relatedTo || this.id === this.relatedTo.id)) || - (this.copiedFromRemoteId && this.relatedTo && this.copiedFromRemoteId === this.relatedTo.id) - ) + if (this.isRemote && (!this.relatedTo || this.id === this.relatedTo.id)) return 'localAndRemote'; return 'local'; }