Skip to content

Commit

Permalink
RC #291 - Fixing typo in FacetTimeline logging
Browse files Browse the repository at this point in the history
  • Loading branch information
dleadbetter committed Aug 15, 2024
1 parent 23a3608 commit 0aff149
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core-data/src/components/FacetTimeline.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ const FACET_EVENT_RANGE = 'event_range_facet';
const FacetTimeline = (props: Props) => {
const { range = {}, refine, start = [] } = props.useRange({ attribute: FACET_EVENT_RANGE });
console.log('range', range);
constole.log('start', start);
console.log('start', start);

const from = Math.max(range.min, Number.isFinite(start[0]) ? start[0] : range.min);
const to = Math.min(range.max, Number.isFinite(start[1]) ? start[1] : range.max);
Expand Down

0 comments on commit 0aff149

Please sign in to comment.