File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
gui/src/pages/gui/ToolCallDiv Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ export function FindAndReplaceDisplay({
120
120
) ;
121
121
}
122
122
}
123
- } , [ toolCallState ?. status ] ) ;
123
+ } , [ toolCallState ?. status , toolCallState ?. output ] ) ;
124
124
125
125
// Unified container component that always renders the same structure
126
126
const renderContainer = ( content : React . ReactNode ) => (
@@ -205,7 +205,7 @@ export function FindAndReplaceDisplay({
205
205
return (
206
206
< div
207
207
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"
209
209
>
210
210
{ part . value . split ( "\n" ) . map ( ( line , lineIndex ) => {
211
211
if (
@@ -226,7 +226,7 @@ export function FindAndReplaceDisplay({
226
226
return (
227
227
< div
228
228
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"
230
230
>
231
231
{ part . value . split ( "\n" ) . map ( ( line , lineIndex ) => {
232
232
if (
You can’t perform that action at this time.
0 commit comments