diff --git a/website/client/components/chat/autoComplete.vue b/website/client/components/chat/autoComplete.vue
deleted file mode 100644
index fbce94d1e4..0000000000
--- a/website/client/components/chat/autoComplete.vue
+++ /dev/null
@@ -1,202 +0,0 @@
-
-.autocomplete-selection(v-if='searchResults.length > 0', :style='autocompleteStyle')
- .autocomplete-results.d-flex.align-items-center(
- v-for='result in searchResults',
- @click='select(result)',
- @mouseenter='result.hover = true',
- @mouseleave='result.hover = false',
- :class='{"hover-background": result.hover}',
- )
- span
- h3.profile-name(:class='userLevelStyle(result.msg)') {{ result.displayName }}
- .svg-icon(v-html="tierIcon(result.msg)", v-if='showTierStyle(result.msg)')
- span.username.ml-2(v-if='result.username', :class='{"hover-foreground": result.hover}') @{{ result.username }}
-
-
-
-
-