Skip to content

Commit aa9cc82

Browse files
filter-menu: drop a debug console.log
1 parent 6218bc0 commit aa9cc82

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

frontend/src/filter-menu.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -133,9 +133,7 @@ function sortValues(values: string[]): string[] {
133133
}
134134

135135
function arrayDiff<T>(a: T[], b: T[]): T[] {
136-
const ret = a.filter((x) => !b.includes(x));
137-
console.log(ret);
138-
return ret;
136+
return a.filter((x) => !b.includes(x));
139137
}
140138

141139
function empty<T>(array: T[] | undefined): boolean {

0 commit comments

Comments
 (0)