Skip to content

Commit eba29da

Browse files
committed
refactor: console.log 코드 삭제
1 parent 0739453 commit eba29da

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

frontend/src/pages/IssueListPage/hooks/useQueryString.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,6 @@ export function hasKeyValue(q: string | null, key: string, value: string) {
142142
const formattedValue = formatValue(value);
143143
const escaped = escapeRegExp(formattedValue);
144144
const pattern = new RegExp(`(^|[ \\t])${key}:${escaped}(?=[ \\t]|$)`);
145-
if (key === 'label')
146-
console.log(`${pattern.test(q)} / pattern: ${pattern}, q: ${q}`);
147145
return pattern.test(q);
148146
}
149147

0 commit comments

Comments
 (0)