feat: remove sorting of members in preparation for server-side sorting
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful

This commit is contained in:
SauceyRed 2025-08-04 04:15:08 +02:00
parent 83de68ebee
commit a61ec265be
Signed by: sauceyred
GPG key ID: 2BF92EB6D8A5CCA7

View file

@ -77,7 +77,7 @@ onActivated(async () => {
}); });
async function setArrayVariables() { async function setArrayVariables() {
members.value = sortMembers(await fetchMembers(route.params.serverId as string)) members.value = await fetchMembers(route.params.serverId as string);
const guildUrl = `guilds/${route.params.serverId}`; const guildUrl = `guilds/${route.params.serverId}`;
channels.value = await fetchWithApi(`${guildUrl}/channels`); channels.value = await fetchWithApi(`${guildUrl}/channels`);
console.log("channels:", channels.value); console.log("channels:", channels.value);