Skip to content

Commit 653798c

Browse files
committed
Simplify the information message when no imported files are found
1 parent dfc255a commit 653798c

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

apps/editor/src/commands/check-imported-files-command.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -181,9 +181,7 @@ export const check_imported_files_command = (
181181
)
182182

183183
if (valid_immediate.length == 0 && valid_recursive.length == 0) {
184-
vscode.window.showInformationMessage(
185-
'No imported files found to check in the workspace.'
186-
)
184+
vscode.window.showInformationMessage('No imported files found.')
187185
return
188186
}
189187

0 commit comments

Comments
 (0)