Fix typo
This commit is contained in:
parent
22cd31be1c
commit
83567c1b35
1 changed files with 2 additions and 2 deletions
|
@ -55,13 +55,13 @@ const USER_CREATE_DM = () =>
|
||||||
|
|
||||||
//CDN Endpoints
|
//CDN Endpoints
|
||||||
const CUSTOM_EMOJI = (emojiID: string) =>
|
const CUSTOM_EMOJI = (emojiID: string) =>
|
||||||
`${DISCORD_CDN_URL}/emojis${emojiID}.png`
|
`${DISCORD_CDN_URL}/emojis/${emojiID}.png`
|
||||||
const GUILD_ICON = (guildID: string, iconID: number) =>
|
const GUILD_ICON = (guildID: string, iconID: number) =>
|
||||||
`${DISCORD_CDN_URL}/icons/${guildID}/${iconID}.png`
|
`${DISCORD_CDN_URL}/icons/${guildID}/${iconID}.png`
|
||||||
const GUILD_SPLASH = (guildID: string, guildSPLASH: string) =>
|
const GUILD_SPLASH = (guildID: string, guildSPLASH: string) =>
|
||||||
`${DISCORD_CDN_URL}/splashes/${guildID}/${guildSPLASH}.png`
|
`${DISCORD_CDN_URL}/splashes/${guildID}/${guildSPLASH}.png`
|
||||||
const GUILD_DISCOVERY_SPLASH = (guildID: string, guildDiscoverySplash: string) =>
|
const GUILD_DISCOVERY_SPLASH = (guildID: string, guildDiscoverySplash: string) =>
|
||||||
`${DISCORD_CDN_URL}discovery-splashes/${guildID}/${guildDiscoverySplash}.png `
|
`${DISCORD_CDN_URL}/discovery-splashes/${guildID}/${guildDiscoverySplash}.png `
|
||||||
const GUILD_BANNER = (guildID: string, guildBANNER: string) =>
|
const GUILD_BANNER = (guildID: string, guildBANNER: string) =>
|
||||||
`${DISCORD_CDN_URL}/banners/${guildID}/${guildBANNER}.png`
|
`${DISCORD_CDN_URL}/banners/${guildID}/${guildBANNER}.png`
|
||||||
const DEFAULT_USER_AVATAR = (iconID: string) =>
|
const DEFAULT_USER_AVATAR = (iconID: string) =>
|
||||||
|
|
Loading…
Reference in a new issue