Skip to content

Commit 9616d43

Browse files
committed
chore: remove async for function without await
1 parent e536f87 commit 9616d43

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/app/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ app.post('/timeout', async (c) => {
7373
return c.json({});
7474
});
7575

76-
app.post('/text', async (c) => {
76+
app.post('/text', (c) => {
7777
return c.text('Hello world!');
7878
});
7979

0 commit comments

Comments
 (0)