Skip to content

Commit fe6d11e

Browse files
committed
fix lint error
1 parent 2b10d3d commit fe6d11e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/components/TimeSeriesChart.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*/
88
import cn from 'classnames'
99
import { format } from 'date-fns'
10-
import React, { useMemo, type ReactNode } from 'react'
10+
import { useMemo, type ReactNode } from 'react'
1111
import {
1212
Area,
1313
AreaChart,
@@ -316,7 +316,7 @@ type ChartHeaderProps = {
316316
title: string
317317
label: string
318318
description?: string
319-
children?: React.ReactNode
319+
children?: ReactNode
320320
}
321321

322322
export function ChartHeader({ title, label, description, children }: ChartHeaderProps) {

0 commit comments

Comments
 (0)