chore: ♻️ Replace all @ts-ignore with @ts-expect-error

This commit is contained in:
Jesse Wierzbinski 2024-06-28 21:33:19 -10:00
parent a8132e8d53
commit 2cf1537a7e
No known key found for this signature in database
4 changed files with 6 additions and 6 deletions

View file

@ -344,10 +344,10 @@ export const qsQuery = () => {
interpretNumericEntities: true,
});
// @ts-ignore Very bad hack
// @ts-expect-error Very bad hack
context.req.query = () => parsed;
// @ts-ignore I'm so sorry for this
// @ts-expect-error I'm so sorry for this
context.req.queries = () => parsed;
await next();
});