Skip to content

Commit

Permalink
Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
djbarnwal committed Dec 9, 2023
1 parent b85bb16 commit f5ae12c
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@
export let labelAccessor = "label";
export let yAccessor = "value";
export let mouseoverValue;
export let hovered = false;
export let validPercTotal: number | null = null;
// control point for scrub functionality.
Expand All @@ -70,10 +69,10 @@
$: mouseoverFormat = createMeasureValueFormatter<null | undefined>(measure);
$: numberKind = numberKindForMeasure(measure);
export let tweenProps = { duration: 400, easing: cubicOut };
const tweenProps = { duration: 400, easing: cubicOut };
const xScale = getContext(contexts.scale("x")) as ScaleStore;
let hovered: boolean | undefined = false;
let scrub;
let cursorClass;
let preventScrubReset;
Expand Down

0 comments on commit f5ae12c

Please sign in to comment.