From 9e1c2e43b7f4be4f361c316b132359fa9bfb4439 Mon Sep 17 00:00:00 2001 From: jNullj <15849761+jNullj@users.noreply.github.com> Date: Sun, 13 Aug 2023 20:13:09 +0300 Subject: [PATCH] fix type --- .github/actions/docusaurus-swizzled-warning/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/docusaurus-swizzled-warning/index.js b/.github/actions/docusaurus-swizzled-warning/index.js index 7becab34869ed..0ae1640444dbc 100644 --- a/.github/actions/docusaurus-swizzled-warning/index.js +++ b/.github/actions/docusaurus-swizzled-warning/index.js @@ -44,7 +44,7 @@ async function run() { pr.number, ) - const file = files.filter(f => f.filename !== 'package-lock.json')[0] + const file = files.filter(f => f.filename === 'package-lock.json')[0] if (file === undefined) { return }