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
parent 3e2f4c2846
commit 5ecf7dc75c

View File

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