File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ import {
4141import { setInitialAgentUsage } from "../features/AgentUsage/agentUsageSlice" ;
4242import {
4343 ideToolCallResponse ,
44- ideForceReload ,
44+ ideForceReloadProjectTreeFiles ,
4545} from "../hooks/useEventBusForIDE" ;
4646import { upsertToolCallIntoHistory } from "../features/History/historySlice" ;
4747import { isToolResponse } from "../events" ;
@@ -551,6 +551,6 @@ startListening({
551551 if ( state . config . host !== "jetbrains" ) return ;
552552 if ( ! isToolResponse ( action . payload ) ) return ;
553553 if ( ! window . postIntellijMessage ) return ;
554- window . postIntellijMessage ( ideForceReload ( ) ) ;
554+ window . postIntellijMessage ( ideForceReloadProjectTreeFiles ( ) ) ;
555555 } ,
556556} ) ;
Original file line number Diff line number Diff line change @@ -63,7 +63,9 @@ export const ideToolCallResponse = createAction<{
6363 accepted : boolean | "indeterminate" ;
6464} > ( "ide/toolEditResponse" ) ;
6565
66- export const ideForceReload = createAction ( "ide/forceReloadProjectTreeFiles" ) ;
66+ export const ideForceReloadProjectTreeFiles = createAction (
67+ "ide/forceReloadProjectTreeFiles" ,
68+ ) ;
6769
6870export const useEventsBusForIDE = ( ) => {
6971 const [ sendTelemetryEvent ] =
You can’t perform that action at this time.
0 commit comments