Skip to content

Commit

Permalink
Remove console.log()
Browse files Browse the repository at this point in the history
  • Loading branch information
MinhxNguyen7 authored Oct 19, 2023
1 parent f1b4dc9 commit 1f48a39
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion apps/antalmanac/src/stores/ColumnStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ interface ColumnStore {
const enabledColumnsInitial = SECTION_TABLE_COLUMNS.map(
(col) => !(window.location.pathname.split('/').slice(1)[0] === 'added' && col === 'gpa')
);
console.log(window.location.pathname.split('/').slice(1)[0] === 'added')
const selectedColumnsInitial = SECTION_TABLE_COLUMNS.map(() => true);
const activeColumnsInitial = SECTION_TABLE_COLUMNS.filter(
(_, index) => enabledColumnsInitial[index] && selectedColumnsInitial[index]
Expand Down

0 comments on commit 1f48a39

Please sign in to comment.