diff --git a/apps/web/src/components/ChatView.tsx b/apps/web/src/components/ChatView.tsx
index 8272abe33..8d607965a 100644
--- a/apps/web/src/components/ChatView.tsx
+++ b/apps/web/src/components/ChatView.tsx
@@ -4993,8 +4993,7 @@ export default function ChatView({ threadId }: ChatViewProps) {
onPaste={onComposerPaste}
placeholder={
isComposerApprovalState
- ? (activePendingApproval?.detail ??
- "Resolve this approval request to continue")
+ ? "Resolve this approval request to continue"
: activePendingProgress
? "Type your own answer, or leave this blank to use the selected option"
: showPlanFollowUpPrompt && activeProposedPlan
diff --git a/apps/web/src/components/DiffPanel.tsx b/apps/web/src/components/DiffPanel.tsx
index 98deb8199..afda09800 100644
--- a/apps/web/src/components/DiffPanel.tsx
+++ b/apps/web/src/components/DiffPanel.tsx
@@ -208,7 +208,7 @@ function DiffFileSection(props: {
{hasNonZeroStat(stats) && (
diff --git a/apps/web/src/components/GitActionsControl.tsx b/apps/web/src/components/GitActionsControl.tsx
index 4b3a5bebf..0201d51ae 100644
--- a/apps/web/src/components/GitActionsControl.tsx
+++ b/apps/web/src/components/GitActionsControl.tsx
@@ -933,7 +933,6 @@ export default function GitActionsControl({ gitCwd, activeThreadId }: GitActions
loading: { title: "Opening file...", data: threadToastData },
success: () => ({
title: "Opened conflicted file",
- description: filePath,
data: threadToastData,
}),
error: (error) => ({
diff --git a/apps/web/src/components/Sidebar.tsx b/apps/web/src/components/Sidebar.tsx
index bcb84319c..78eb08342 100644
--- a/apps/web/src/components/Sidebar.tsx
+++ b/apps/web/src/components/Sidebar.tsx
@@ -798,7 +798,6 @@ export default function Sidebar() {
toastManager.add({
type: "success",
title: "Path copied",
- description: ctx.path,
});
},
onError: (error) => {
diff --git a/apps/web/src/components/WorkspaceFileTree.tsx b/apps/web/src/components/WorkspaceFileTree.tsx
index bad8adf25..16b396eb6 100644
--- a/apps/web/src/components/WorkspaceFileTree.tsx
+++ b/apps/web/src/components/WorkspaceFileTree.tsx
@@ -62,7 +62,6 @@ export const WorkspaceFileTree = memo(function WorkspaceFileTree(props: {
toastManager.add({
type: "success",
title: "Path copied",
- description: ctx.path,
});
},
onError: (error) => {
@@ -436,7 +435,6 @@ const WorkspaceSearchResultRow = memo(function WorkspaceSearchResultRow(props: {
props.onOpenFile(props.entry.path, { metaKey: event.metaKey, ctrlKey: event.ctrlKey });
}}
onContextMenu={handleContextMenu}
- title={props.entry.path}
>
{isDirectory ? (
@@ -697,7 +695,6 @@ const WorkspaceFileRow = memo(function WorkspaceFileRow(props: {
props.onOpenFile(props.entry.path, { metaKey: event.metaKey, ctrlKey: event.ctrlKey })
}
onContextMenu={handleContextMenu}
- title={props.entry.path}
>
{preview ?? heading}