From 992f9ec2da44f094465b2914ef7d69b358895bc6 Mon Sep 17 00:00:00 2001 From: Alexandr Garbuzov <186095128+alexandr-garbuzov@users.noreply.github.com> Date: Sat, 18 Oct 2025 21:07:48 +0300 Subject: [PATCH] fix: resolve vscode type errors inside access module (#4596) Co-authored-by: Alexandr --- backend/src/common/access.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/common/access.js b/backend/src/common/access.js index 89151832..25777356 100644 --- a/backend/src/common/access.js +++ b/backend/src/common/access.js @@ -12,7 +12,7 @@ const BLACKLISTED_MESSAGE = "This username is blacklisted"; * Guards access using whitelist/blacklist. * * @param {Object} args The parameters object. - * @param {Object} args.res The response object. + * @param {any} args.res The response object. * @param {string} args.id Resource identifier (username or gist id). * @param {"username"|"gist"|"wakatime"} args.type The type of identifier. * @param {{ title_color?: string, text_color?: string, bg_color?: string, border_color?: string, theme?: string }} args.colors Color options for the error card.