Skip to content

Commit 061c1dc

Browse files
committed
Fixes type issue in composer
1 parent 3b84174 commit 061c1dc

File tree

1 file changed

+1
-1
lines changed
  • src/webviews/apps/plus/composer/components

1 file changed

+1
-1
lines changed

src/webviews/apps/plus/composer/components/app.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1669,7 +1669,7 @@ export class ComposerApp extends LitElement {
16691669
.canReorderCommits=${this.canReorderCommits}
16701670
.isPreviewMode=${this.isPreviewMode}
16711671
.baseCommit=${this.state.baseCommit}
1672-
.repoName=${this.state.baseCommit?.repoName ?? this.state.repositoryState?.current.name}
1672+
.repoName=${this.state.baseCommit?.repoName ?? this.state.repositoryState?.current.name ?? null}
16731673
.customInstructions=${this.customInstructions}
16741674
.hasUsedAutoCompose=${this.state.hasUsedAutoCompose}
16751675
.hasChanges=${this.state.hasChanges}

0 commit comments

Comments
 (0)