From fc87bd4b6f5e16f143249f9fa66f2e109395b29c Mon Sep 17 00:00:00 2001 From: SauceyRed Date: Mon, 14 Jul 2025 18:44:25 +0200 Subject: [PATCH] chore: remove unused temporary members list array --- layouts/client.vue | 41 ----------------------------------------- 1 file changed, 41 deletions(-) diff --git a/layouts/client.vue b/layouts/client.vue index b362156..65dd021 100644 --- a/layouts/client.vue +++ b/layouts/client.vue @@ -138,47 +138,6 @@ const options = [ const guilds: GuildResponse[] | undefined = await fetchWithApi("/me/guilds"); -//const servers = await fetchWithApi("/servers") as { uuid: string, name: string, description: string }[]; -//console.log("servers:", servers); -const members = [ - { - id: "3287484395", - displayName: "SauceyRed" - }, - { - id: "3287484395", - displayName: "SauceyRed" - }, - { - id: "3287484395", - displayName: "SauceyRed" - }, - { - id: "3287484395", - displayName: "SauceyRed" - }, - { - id: "3287484395", - displayName: "SauceyRed" - }, - { - id: "3287484395", - displayName: "SauceyRed" - }, - { - id: "3287484395", - displayName: "SauceyRed" - }, - { - id: "3287484395", - displayName: "SauceyRed" - }, - { - id: "3287484395", - displayName: "SauceyRed" - } -]; - function createDropdown() { const dropdown = h(GuildDropdown, { options }); const div = document.createElement("div");