Skip to content

Commit

Permalink
Fix one more issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
eswan18 committed Nov 25, 2023
1 parent 2da320d commit 3140ea9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/(protected)/workouts/WorkoutView/WorkoutStatsCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
import { LineChart } from "lucide-react";
import { formatDurationHMS } from "@/lib/time";
import { WorkoutWithType } from "@/lib/resources/apiTypes";
import { ExerciseSet } from "@/lib/resources/derived/workoutWithDetails";
import { ExerciseGroup } from "@/lib/resources/derived/workoutWithDetails";

type WorkoutStatsCardProps = {
workout: WorkoutWithType;
exerciseGroups: ExerciseSet[];
exerciseGroups: ExerciseGroup[];
};

export default async function WorkoutStatsCard({
Expand Down

0 comments on commit 3140ea9

Please sign in to comment.