Skip to content

Commit

Permalink
clean up console logs. scope change updates point rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
enjalot committed Feb 27, 2025
1 parent aebcc08 commit 1431f8e
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
2 changes: 0 additions & 2 deletions web/src/components/Explore/V2/FilterDataTable.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,6 @@ function FilterDataTable({
const { dataTableRows, page, setPage, totalPages, filterConfig, filterActive, loading } =
useFilter();

console.log('==== filterConfig ==== ', filterConfig, loading);

// feature tooltip content
const [featureTooltipContent, setFeatureTooltipContent] = useState(null);

Expand Down
2 changes: 1 addition & 1 deletion web/src/components/Explore/V2/ScatterGL.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ function ScatterGL({
reglRef.current.destroy();
}
};
}, [width, height]);
}, [width, height, points]);

const dynamicSize = useMemo(() => {
let size = calculateDynamicPointScale(points.length, width, height);
Expand Down
1 change: 0 additions & 1 deletion web/src/lib/apiService.js
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,6 @@ export const apiService = {
);
},
fetchDataFromIndices: async (datasetId, indices, saeId) => {
console.log('==== fetchDataFromIndices ==== ', { datasetId, indices, saeId });
return fetch(`${apiUrl}/indexed`, {
method: 'POST',
headers: {
Expand Down

0 comments on commit 1431f8e

Please sign in to comment.