diff --git a/api/src/routes/api/index.ts b/api/src/routes/api/index.ts index 6bf1b38..228475e 100644 --- a/api/src/routes/api/index.ts +++ b/api/src/routes/api/index.ts @@ -21,7 +21,7 @@ export const api = new Elysia({ prefix: "/api" }) }) }) .get("/cache/:key", async ({ params: { key } }) => { - return await CacheService.getCache(key); + return CacheService.getCache(key); }, { params: t.Object({ key: t.Union([ t.Literal("items"), t.Literal("locales"), t.Literal("handbook") ]),