Skip to content

Commit afcbc9e

Browse files
committed
(#237) 선호운동 API 연결 : 타입오류수정
1 parent f434cf1 commit afcbc9e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/app/(main)/mypage/_components/preferExerciseItem.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use client'
22

3-
import { PreferExercises } from '@/types/mypage'
3+
import { UserProfilePreferExercise } from '@/types/mypage'
44
import ExerciseImg from '@/components/commons/exerciseImg'
55
import Typography from '@/components/ui/typography'
66
import {
@@ -11,7 +11,7 @@ import {
1111
import styles from './preferExerciseItem.module.css'
1212

1313
type Props = {
14-
data: PreferExercises
14+
data: UserProfilePreferExercise
1515
}
1616

1717
export default function PreferExerciseItem({ data }: Props) {

0 commit comments

Comments
 (0)