Skip to content

Commit

Permalink
fix permanence calculator
Browse files Browse the repository at this point in the history
  • Loading branch information
Shane98c committed Jan 17, 2025
1 parent 76eeb1e commit 7774226
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const Curve = ({
const [displayValue, setDisplayValue] = useState(value[0][1])

const initializeChart = () => {
const out = new CostCurve(
const out = CostCurve(
container,
theme,
value,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const Timeline = ({ options }) => {

useEffect(() => {
if (container.current.offsetWidth > 0) {
chart = new TimelineChart(container, theme)
chart = TimelineChart(container, theme)
}

return function cleanup() {
Expand Down

0 comments on commit 7774226

Please sign in to comment.