From b2935d800e2994903964a8f3b909dd103d946e4f Mon Sep 17 00:00:00 2001 From: fullex <106392080+0xfullex@users.noreply.github.com> Date: Sat, 26 Jul 2025 09:17:16 +0800 Subject: [PATCH] fix: remove mistaken `console.log` --- src/renderer/src/utils/match.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/renderer/src/utils/match.ts b/src/renderer/src/utils/match.ts index 11e8af52b0..2821384252 100644 --- a/src/renderer/src/utils/match.ts +++ b/src/renderer/src/utils/match.ts @@ -43,8 +43,6 @@ export function matchKeywordsInString(keywords: string | string[], value: string * @returns 匹配所有关键词则返回 true */ export function matchKeywordsInProvider(keywords: string | string[], provider: Provider): boolean { - console.log(keywords, provider.id) - console.log(getProviderSearchString(provider)) return includeKeywords(getProviderSearchString(provider), keywords) }