Trying to fix async/await issue

This commit is contained in:
Keith Williams 2023-11-16 17:17:15 -03:00
parent 167ac33604
commit 6c5fdce9db

View File

@ -16,7 +16,7 @@ const rateLimitMiddleware = middleware(async (opts) => {
});
}
return await opts.next();
return opts.next();
});
export default rateLimitMiddleware;