Skip to content

Commit

Permalink
Remove commented out comment + add note for revision
Browse files Browse the repository at this point in the history
  • Loading branch information
SARodrigues committed Nov 13, 2023
1 parent 0f4c279 commit 35fe5b6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ const GlobalRegionalTable: React.FC = () => {
const location = useAtomValue(locationAtom);

const [filters, setFilters] = useState({
// ! This shouldn't be hardcoded. The setup needs to be able to work the same without any default filters here.
locationType: ['country', 'worldwide', 'highseas', 'region'],
});

Expand All @@ -22,7 +23,6 @@ const GlobalRegionalTable: React.FC = () => {
};

const columns = useColumns({ filters, onFiltersChange: handleOnFiltersChange });
// console.log(columns);

// Get worldwide data in order to calculate contributions per location
const { data: globalData }: { data: LocationListResponseDataItem[] } = useGetLocations(
Expand Down

0 comments on commit 35fe5b6

Please sign in to comment.