Skip to content

Commit c58725a

Browse files
committed
Remove errant debug console.log.
1 parent 763b033 commit c58725a

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/js/components/TagEditor/TagEditor.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,6 @@ export const TagEditor: React.FC<TagEditorProps> = ({
103103
const keyboardHandler: KeyboardEventHandler<HTMLInputElement> = event => {
104104
const { key, ctrlKey, metaKey } = event
105105

106-
console.log('keyboardHandler', key, ctrlKey, metaKey)
107-
108106
switch (key) {
109107
case 'Enter':
110108
case ',':

src/php/class-list-table.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1019,8 +1019,8 @@ function ( Snippet $snippet ) use ( $type ) {
10191019

10201020
// Count the totals for each section.
10211021
$totals = array_map(
1022-
function ( $list ) {
1023-
return count( $list );
1022+
function ( $section_snippets ) {
1023+
return count( $section_snippets );
10241024
},
10251025
$snippets
10261026
);

0 commit comments

Comments
 (0)