diff --git a/packages/devtools/client/components/DisconnectIndicator.vue b/packages/devtools/client/components/DisconnectIndicator.vue
index ae26772162..23a266104d 100644
--- a/packages/devtools/client/components/DisconnectIndicator.vue
+++ b/packages/devtools/client/components/DisconnectIndicator.vue
@@ -5,7 +5,7 @@
diff --git a/packages/devtools/client/components/IframeView.vue b/packages/devtools/client/components/IframeView.vue
index a830b7d904..c94f17cac9 100644
--- a/packages/devtools/client/components/IframeView.vue
+++ b/packages/devtools/client/components/IframeView.vue
@@ -10,7 +10,6 @@ const props = defineProps<{
tab: ModuleCustomTab
}>()
-const client = useClient()
const colorMode = useColorMode()
const anchor = ref()
const key = computed(() => props.tab.name)
diff --git a/packages/devtools/client/composables/state.ts b/packages/devtools/client/composables/state.ts
index 3b5e90510b..787f3b61de 100644
--- a/packages/devtools/client/composables/state.ts
+++ b/packages/devtools/client/composables/state.ts
@@ -133,7 +133,3 @@ export function useAllRoutes() {
})
})
}
-
-function capitalize(str: string) {
- return str.charAt(0).toUpperCase() + str.slice(1)
-}