Skip to content

Commit 56b7195

Browse files
committed
fix: cubic feedback
1 parent 0208969 commit 56b7195

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

gui/src/pages/gui/ToolCallDiv/FindAndReplace.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ export function FindAndReplaceDisplay({
120120
);
121121
}
122122
}
123-
}, [toolCallState?.status]);
123+
}, [toolCallState?.status, toolCallState?.output]);
124124

125125
// Unified container component that always renders the same structure
126126
const renderContainer = (content: React.ReactNode) => (
@@ -205,7 +205,7 @@ export function FindAndReplaceDisplay({
205205
return (
206206
<div
207207
key={index}
208-
className="text-foreground border-l-3 border-red-900 bg-red-900/30"
208+
className="text-foreground border-l-4 border-red-900 bg-red-900/30"
209209
>
210210
{part.value.split("\n").map((line, lineIndex) => {
211211
if (
@@ -226,7 +226,7 @@ export function FindAndReplaceDisplay({
226226
return (
227227
<div
228228
key={index}
229-
className="text-foreground border-l-3 border-green-600 bg-green-600/20"
229+
className="text-foreground border-l-4 border-green-600 bg-green-600/20"
230230
>
231231
{part.value.split("\n").map((line, lineIndex) => {
232232
if (

0 commit comments

Comments
 (0)