feat: change all occurrences of server with guild

This commit is contained in:
SauceyRed 2025-05-31 14:27:37 +02:00
parent 57f31d487e
commit fe1474416f
Signed by: sauceyred
GPG key ID: 2BF92EB6D8A5CCA7
5 changed files with 10 additions and 10 deletions

View file

@ -5,8 +5,8 @@
</template>
<script lang="ts" setup>
const server = await fetchWithApi(`/guilds/${useRoute().params.serverId}`);
console.log("server:", server);
const guild = await fetchWithApi(`/guilds/${useRoute().params.guildId}`);
console.log("guild:", guild);
</script>