feat(web-ui)!: remove discord widget (#4630)

This commit is contained in:
David Lane 2026-01-25 17:47:12 -05:00 committed by GitHub
commit 5ecf7dc75c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -39,7 +39,6 @@
<script>
import ThemeToggle from './ThemeToggle.vue'
import { initDiscord } from '@lizardbyte/shared-web/src/js/discord.js'
export default {
components: { ThemeToggle },
@ -49,7 +48,6 @@ export default {
mounted() {
let el = document.querySelector("a[href='" + document.location.pathname + "']");
if (el) el.classList.add("active")
initDiscord();
}
}
</script>