Skip to content

Commit

Permalink
Fix unused var
Browse files Browse the repository at this point in the history
  • Loading branch information
benvinegar committed Dec 13, 2024
1 parent e72c6b9 commit b9ac8eb
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions app/components/TimeSeriesChart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ interface TimeSeriesChartProps {
bounceRate: number;
}>;
intervalType?: string;
timezone?: string;
}

function dateStringToLocalDateObj(dateString: string): Date {
Expand Down Expand Up @@ -66,7 +65,6 @@ function CustomTooltip(props: any) {
export default function TimeSeriesChart({
data,
intervalType,
timezone,
}: TimeSeriesChartProps) {
// chart doesn't really work no data points, so just bail out
if (data.length === 0) {
Expand Down
1 change: 0 additions & 1 deletion app/routes/resources.timeseries.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ export const TimeSeriesCard = ({
<TimeSeriesChart
data={chartData}
intervalType={intervalType}
timezone={timezone}
/>
)}
</div>
Expand Down

0 comments on commit b9ac8eb

Please sign in to comment.