diff --git a/src/Console/Command/Dev/InspectorCommand.php b/src/Console/Command/Dev/InspectorCommand.php
index d531fae3..2b73a7e8 100644
--- a/src/Console/Command/Dev/InspectorCommand.php
+++ b/src/Console/Command/Dev/InspectorCommand.php
@@ -207,13 +207,13 @@ private function isInspectorEnabled(): bool
}
/**
- * Clean config cache
+ * Clean relevant caches after changing inspector status
*
* @return void
*/
private function cleanCache(): void
{
- $this->cacheManager->clean(['config']);
- $this->io->writeln('Config cache cleaned');
+ $this->cacheManager->clean(['config', 'layout', 'full_page', 'block_html']);
+ $this->io->writeln('Config, layout, full page & block HTML caches cleaned');
}
}