File tree 1 file changed +5
-4
lines changed
gui/src/components/loaders
1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -121,7 +121,9 @@ const IndexingProgressBar = ({
121
121
function onClick ( ) {
122
122
switch ( indexingState . status ) {
123
123
case "failed" :
124
- if ( indexingState . shouldClearIndexes ) {
124
+ // For now, we don't show in JetBrains since the reindex command
125
+ // is not yet implemented
126
+ if ( indexingState . shouldClearIndexes && ! isJetBrains ( ) ) {
125
127
dispatch ( setShowDialog ( true ) ) ;
126
128
dispatch (
127
129
setDialogMessage (
@@ -131,9 +133,8 @@ const IndexingProgressBar = ({
131
133
text = {
132
134
"Your index appears corrupted. We recommend clearing and rebuilding it, " +
133
135
"which may take time for large codebases.\n\n" +
134
- "Alternatively, you can close this and use the 'Continue: Force Codebase Re-Indexing' " +
135
- "command to attempt a faster rebuild without clearing data, though it may be " +
136
- "less reliable for persistent issues."
136
+ "For a faster rebuild without clearing data, press 'Shift + Command + P' to open " +
137
+ "the Command Palette, and type out 'Continue: Force Codebase Re-Indexing'"
137
138
}
138
139
onConfirm = { ( ) => {
139
140
posthog . capture ( "rebuild_index_clicked" ) ;
You can’t perform that action at this time.
0 commit comments