remove console.log

This commit is contained in:
tamaina 2023-01-22 17:20:53 +00:00
parent 0cffe60abc
commit 0d44129ae3
2 changed files with 0 additions and 5 deletions

View file

@ -33,7 +33,6 @@ const url = computed(() => {
return char2path(char.value);
} else if (props.host == null && !customEmojiName.value.includes('@')) {
const found = customEmojis.value.find(x => x.name === customEmojiName.value);
console.log(found)
return found ? found.url : null;
} else {
const rawUrl = props.host ? `/emoji/${customEmojiName.value}@${props.host}.webp` : `/emoji/${customEmojiName.value}.webp`;