From 54ced18ea21b9b08faf1095c03931d87b8c7af6c Mon Sep 17 00:00:00 2001 From: ilnaz <237x237@gmail.com> Date: Sat, 25 Jan 2025 17:15:41 +0300 Subject: [PATCH] fix: eslint checks (#67) --- stubs/api/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stubs/api/index.js b/stubs/api/index.js index aa7ca34..edae4e5 100644 --- a/stubs/api/index.js +++ b/stubs/api/index.js @@ -8,8 +8,8 @@ const commonError = { success: false, message: 'Что-то пошло не та const sleep = (duration = 1000) => - (req, res, next) => - setTimeout(next, duration); + (req, res, next) => + setTimeout(next, duration); router.use(sleep());