Skip to content

Commit

Permalink
fix(frontend): cleanup remaining stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
IgnisDa committed Dec 8, 2024
1 parent c93e7e8 commit 5e2c20d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/frontend/app/components/fitness.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ export const ExerciseHistory = (props: {
>
{props.hideExerciseDetails
? workoutDetails.details.name
: exercise.name}
: exerciseDetails.name}
</Anchor>
{!props.hideExtraDetailsButton ? (
<ActionIcon onClick={toggle} variant="transparent">
Expand Down Expand Up @@ -425,7 +425,7 @@ export const ExerciseDisplayItem = (props: {
return (
<BaseMediaDisplayItem
innerRef={ref}
name={exerciseDetails?.id}
name={exerciseDetails?.name}
isLoading={isExerciseDetailsLoading}
imageUrl={exerciseDetails?.attributes.images.at(0)}
onImageClickBehavior={getExerciseDetailsPath(props.exerciseId)}
Expand Down

0 comments on commit 5e2c20d

Please sign in to comment.