diff --git a/Controller/Adminhtml/Studio/Team.php b/Controller/Adminhtml/Studio/Team.php
deleted file mode 100644
index 3850a73..0000000
--- a/Controller/Adminhtml/Studio/Team.php
+++ /dev/null
@@ -1,51 +0,0 @@
-resultPageFactory = $resultPageFactory;
- parent::__construct($context);
- }
-
- /**
- * Execute method.
- *
- * @return Page
- */
- public function execute()
- {
- $resultPage = $this->resultPageFactory->create();
- $resultPage
- ->getConfig()
- ->getTitle()
- ->prepend(__('Chat Team / Widget'));
- return $resultPage;
- }
-}
diff --git a/Controller/Adminhtml/Studio/Widget.php b/Controller/Adminhtml/Studio/Widget.php
deleted file mode 100644
index d7f8483..0000000
--- a/Controller/Adminhtml/Studio/Widget.php
+++ /dev/null
@@ -1,51 +0,0 @@
-resultPageFactory = $resultPageFactory;
- parent::__construct($context);
- }
-
- /**
- * Execute method.
- *
- * @return Page
- */
- public function execute()
- {
- $resultPage = $this->resultPageFactory->create();
- $resultPage
- ->getConfig()
- ->getTitle()
- ->prepend(__('Chat Studio / Widget'));
- return $resultPage;
- }
-}