Skip to content

Commit

Permalink
fix: remove console log
Browse files Browse the repository at this point in the history
  • Loading branch information
henrikmv committed Jan 13, 2025
1 parent 750c0de commit 8001694
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,9 @@ type Props = {

export const useChangelogData = ({ entityId, entityType, programId }: Props) => {
const [columnToSortBy, setColumnToSortBy] = useState<string>(COLUMN_TO_SORT_BY.DATE);
console.log('columnToSortBy', columnToSortBy);
const [sortDirection, setSortDirection] = useState<SortDirection>(SORT_DIRECTION.DEFAULT);

const [attributeToFilterBy, setAttributeToFilterBy] = useState<string | null>(null);
console.log('attributeToFilterBy', attributeToFilterBy);
const [filterValue, setFilterValue] = useState<Object>('Show all');

const [page, setPage] = useState<number>(1);
Expand Down

0 comments on commit 8001694

Please sign in to comment.