Skip to content

Commit

Permalink
fix build error (remove this commit when fixed)
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiolms committed Sep 6, 2024
1 parent beda0e0 commit 613b2b9
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/git/models/graph.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,13 @@ import type { GitWorktree } from './worktree';

export type GitGraphHostingServiceType = HostingServiceType;

export type GitGraphRowHead = Head;
// FIXES:
// ERROR in src/env/node/git/localGitProvider.ts:2650:8
// TS2353: Object literal may only specify known properties, and 'worktreeId' does not exist in type 'Head'.
export type GitGraphRowHead = Head & {
worktreeId?: string;
};

export type GitGraphRowRemoteHead = Remote;
export type GitGraphRowTag = Tag;
export type GitGraphRowContexts = RowContexts;
Expand Down

0 comments on commit 613b2b9

Please sign in to comment.