diff --git a/src/components/ZclCustomSetup.vue b/src/components/ZclCustomSetup.vue
deleted file mode 100644
index bb8a5c627f261521942d2576ac56e16639d1bebe..0000000000000000000000000000000000000000
--- a/src/components/ZclCustomSetup.vue
+++ /dev/null
@@ -1,26 +0,0 @@
-<!--
-Copyright (c) 2008,2020 Silicon Labs.
-
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
-    http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
--->
-<template>
-  <q-card>
-    <q-card-section>Zcl custom additions setup....</q-card-section>
-  </q-card>
-</template>
-
-<script>
-export default {
-  name: 'ZclCustomSetup',
-}
-</script>
diff --git a/test/ui.test.js b/test/ui.test.js
index 1672c30548f101e1ec203cdea953b698f69facf9..4b2134f76310c82d20759994ea7f18b1f7d330a6 100644
--- a/test/ui.test.js
+++ b/test/ui.test.js
@@ -62,7 +62,6 @@ import ZclClusterManager from '../src/components/ZclClusterManager.vue'
 import ZclClusterView from '../src/components/ZclClusterView.vue'
 import ZclCommandManager from '../src/components/ZclCommandManager.vue'
 import ZclCreateModifyEndpoint from '../src/components/ZclCreateModifyEndpoint.vue'
-import ZclCustomSetup from '../src/components/ZclCustomSetup.vue'
 import ZclDomainClusterView from '../src/components/ZclDomainClusterView.vue'
 import ZclEndpointCard from '../src/components/ZclEndpointCard.vue'
 import ZclEndpointManager from '../src/components/ZclEndpointManager.vue'
@@ -145,10 +144,6 @@ test('ZclCreateModifyEndpoint', () => {
   const wrapper = shallowMount(ZclCreateModifyEndpoint, { store: ZapStore() })
   expect(wrapper.html().length).toBeGreaterThan(100)
 })
-test('ZclCustomSetup', () => {
-  const wrapper = shallowMount(ZclCustomSetup, { store: ZapStore() })
-  expect(wrapper.html().length).toBeGreaterThan(50)
-})
 test('ZclDomainClusterView', () => {
   const wrapper = shallowMount(ZclDomainClusterView, { store: ZapStore() })
   expect(wrapper.html().length).toBeGreaterThan(100)