diff --git a/apps/web/src/components/GitActionsControl.logic.test.ts b/apps/web/src/components/GitActionsControl.logic.test.ts index 44ad29efa..85c32d42e 100644 --- a/apps/web/src/components/GitActionsControl.logic.test.ts +++ b/apps/web/src/components/GitActionsControl.logic.test.ts @@ -344,7 +344,7 @@ describe("when: working tree has local changes", () => { assert.deepInclude(quick, { kind: "run_action", action: "commit_push_pr", - label: "Commit, push & PR", + label: "Commit, push & create PR", }); }); @@ -455,7 +455,7 @@ describe("when: working tree has local changes and branch is behind upstream", ( assert.deepInclude(quick, { kind: "run_action", action: "commit_push_pr", - label: "Commit, push & PR", + label: "Commit, push & create PR", }); }); diff --git a/apps/web/src/components/GitActionsControl.logic.ts b/apps/web/src/components/GitActionsControl.logic.ts index 8f7f023ef..6898a5ebd 100644 --- a/apps/web/src/components/GitActionsControl.logic.ts +++ b/apps/web/src/components/GitActionsControl.logic.ts @@ -219,7 +219,7 @@ export function resolveQuickAction( return { label: "Commit & push", disabled: false, kind: "run_action", action: "commit_push" }; } return { - label: "Commit, push & PR", + label: "Commit, push & create PR", disabled: false, kind: "run_action", action: "commit_push_pr", diff --git a/apps/web/src/components/chat/ChatHeader.tsx b/apps/web/src/components/chat/ChatHeader.tsx index ea7f911be..e6a289ae8 100644 --- a/apps/web/src/components/chat/ChatHeader.tsx +++ b/apps/web/src/components/chat/ChatHeader.tsx @@ -55,7 +55,7 @@ export const ChatHeader = memo(function ChatHeader({ }: ChatHeaderProps) { return (
-
+

)}

-
+
{activeProjectScripts && (