diff --git a/composables/api.ts b/composables/api.ts index dc2fe4f..0b438a6 100644 --- a/composables/api.ts +++ b/composables/api.ts @@ -53,7 +53,7 @@ export const useApi = () => { return await fetchWithApi(`/channels/${channelId}/messages/${messageId}`); } - async function createGuild(name: string): Promise { + async function createGuild(name: string): Promise { return await fetchWithApi(`/guilds`, { method: "POST", body: { name } }); }