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

@ -20,7 +20,7 @@ const route = useRoute();
async function generateInvite(): Promise<void> {
const createdInvite: InviteResponse | undefined = await fetchWithApi(
`/servers/${route.params.serverId}/invites`,
`/guilds/${route.params.guildId}/invites`,
{ method: "POST", body: { custom_id: "oijewfoiewf" } }
);