Skip to content

Commit 785e1a6

Browse files
im way too selfaware for ts
1 parent e753398 commit 785e1a6

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/events/index.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,9 @@ export default new Elysia({
146146
.post(
147147
"/emoji",
148148
async ({ body }) => {
149-
return await emojiSuggest(body.value);
149+
const response = await emojiSuggest(body.value);
150+
console.log(response);
151+
return response;
150152
},
151153
{
152154
body: EmojiSuggestPayload,

0 commit comments

Comments
 (0)